/* 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 */

main {
    color: rgba(190, 87, 41, 1);
    font-family: "Tinos";
}

.overallProject {
    display: flex;
    flex-direction: column;

    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-right: 16px;
    padding-top: 16px;

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

.what {
    font-size: 1.4rem;
    text-indent: 2rem;
    margin-left: 1rem;
    font-family: "Playfair Display";
}

i {
    color: rgb(195, 184, 179);
}

.description {
    font-size: 1.2rem;
    text-align: justify;
    text-indent: 1rem;
    margin-left: 1rem;
}

.divBar {

    background-color: rgba(190, 88, 41, 0.5);
    color: rgba(190, 88, 41, 0);
    font-size: 0.5rem;
    text-align: center;

}

.images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
}