@font-face {
    font-family: "CormorantGaramond";
    src: url(./assets/fonts/CormorantGaramond-VariableFont_wght.ttf) format("truetype");
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: "CormorantGaramond";
    src: url(./assets/fonts/CormorantGaramond-Italic-VariableFont_wght.ttf) format("truetype");
    font-weight: 100 900;
    font-style: italic;
}
body{
    font-family: "CormorantGaramond";
    background-color: #f6f1eb;
}
nav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid lightgray;
}
a{
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
nav img{
    width: 7vw;
    height: auto;
}

#nav-right-div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#nav-right-div a{
    margin: 1vw;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 11vw;
}
h1{
    font-size: 3.5vw;
    margin-bottom: 0.5vw;
    color: #c27461;
    font-weight:600;
}
p{
    font-size : 2vw;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}
h2{
    font-size: 1.5vw;
    margin-top: 0.5vw;
    color: green;
    font-weight: normal;
    font-style: italic;
}

@media screen and (max-width: 768px){
    nav img{
        width: 18vw;
        height: auto;
    }
    #nav-right-div a{
        font-size: 3vw;
    }
    h1{
        font-size: 8vw;
    }
    main{
        margin-top: 55vw;
    }
    p{
        font-size: 4.2vw;
    }
    h2{
        font-size: 3.5vw;
    }
}