@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&display=swap');

* {
    font-family: 'Libre Baskerville', serif;
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
  }

body {
    background-color: #ffe;
    min-height: 100%;

}

header {
    align-items: center;
    /* background-color: #BBF2DD; */
    background-color: #A9DBB8;
    display: flex;
    justify-content: space-between;
    font-size: 1.5vh;
    font-style: italic;
    height: 5vh;
    padding: 1vh 2vw;
}

h3 {
    font-weight: 400; 
}

.menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin-left: auto;
    text-decoration: underline;
}

.menu li{
    padding: 0 1vw;
}

.menu li:nth-child(2){
   border-left: 1px solid #558B6E;
   border-right: 1px solid #558B6E;
   padding: 0 1vw;
}

.nav-link{
    color: #000;
    text-decoration-color: #000;
}

