@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:wght@200&family=Noto+Sans&family=Raleway&family=Roboto:wght@100&family=Shippori+Antique&display=swap');
*{
    --header-footer-bg-color: rgb(50, 49, 49);
    --text-color: white;
    margin: 0;
    padding: 0;
    --bg-color: rgb(80, 73, 60);
    font-family: 'Roborto', serif;
    font-size: 1.171vw;
}
body{
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
}
header{
    background-color: var(--header-footer-bg-color);
    width: 26vw;
    height: 100vh;
    position: sticky;
    box-shadow:0 0 20px black;
}
nav ul{
    position: relative;
    flex-direction: column;
    padding-top: 10vh;
}
nav ul div{
    display: block;
    margin: 0.7em;
}
nav ul div a{
    text-decoration: none;
    font-size: 2vw;
    color: #94a9b3;
}
nav ul div a:hover{
    color:white;
}
main{
    padding-left: 2vw;
}
