@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}



nav {
    position: fixed;
    width: 15%;
    height: 800px;
    background-color: #fffaed;
}

nav ul {
    list-style: none;
}

nav ul li {
    width: 100%;
}

nav ul li a {
    display: block;
    margin-top: 60px;
    height: 100px;
    text-align: center;
    text-decoration: none;
    color: #202020;
    font-size: 2.5vw;
    transform: scale(0.9,0.9);
    transition: 1s;
}


nav ul li a:hover {
    transform: scale(1.2,1.2);
    color: green;
    transition: 0.8s;
}

footer {
    width: 85%;
    margin-left: auto;
    background-color: #fae7b6;
}

footer p small {
    display: block;
    font-size: 1.2vw;
    line-height: 4;
    text-align: center;
    color: #202020;
}