@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body { 
   font-family: 'Montserrat', sans-serif;
    background-color: #2e8ec5;
};

html {
    overflow-y: scroll;
}


nav > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

nav > ul > li {
    margin-left: 1em;
    margin-right: 1em;
}
nav > ul > li > a {
    text-decoration: none;
    color: #111;
    font-size: 0.60cm;
}

nav > ul > li.current-link > a {
    color: #37bce8;
}

