/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* General CSS attributes for the page */

a {
    text-decoration: none;
}

.backgroundPic {
    position: fixed;
    background-image: url("resources/IMG_3011.jpg");
    background-position: 85%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

main a {
    color: rgb(184, 121, 92);
    font-weight: bold;
}

/* Header nav bar for all pages */

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100.1vw;
    background-color: rgba(0, 0, 0, 0.5);
    margin-left: -9px;
    font-family: 'Tinos';
}

header a {
    color:rgba(190, 87, 41, 1);
}

/* Actual content of the page */

/* "Works" page title */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    font-family: 'Tinos';
    font-size: 1.1rem;
}

/* Work Disambiguation Squares */

#workDisambiguation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100vw;
    margin-top: -4rem;
}

#workDisambiguation a {
    color: rgb(255, 255, 255, 1);
    font-weight: normal;
}

.workSquare {
    width: 170px;
    height: 170px;

    position: relative;
    text-align: center;

    border: 1px solid rgba(255, 255, 255, 1); /* unhovered solid border */

    display: grid;
    place-items: center; /* Make inside text centered */

    background-color: rgba(0, 0, 0, 0.55);
}