@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');

.wrapper{
    width: 100vw;
    height: 100vh;
    /*background-color: #191C32;*/
    color :white;
}

.navbar{
    display:flex;
    justify-content: space-between;
    padding: 2em;
    background-color: #333333;
}

.nameLogo h2{
    font-family: 'Londrina Solid',sans-serif;
    font-size: 45px;
    margin-top: -15;
}
.nameLogo span{
    font-family: 'Londrina Solid',sans-serif;
    color: #17A2B8;
}

.menu{
    display: flex;
    width: 50%;
    justify-content: space-around;
}

.menu li{
    list-style: none;
}

.menu a{
    color: white;
    text-decoration: none;
}

.menu .active{
    color: aqua;
}