* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playpen Sans', cursive;
}
.navbar {
    display: flex;
    flex-direction: row;
    background-color: rgb(49, 177, 232);
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-left: none;
    padding-left: none;
    height: 130px
}   
.logo {
    flex-grow: 1;
    margin-left: 35px;
    object-fit: cover;
}
.logo img {
    height: 110px;
    margin-top: 5px;
    border-radius: 50%;
}
.list {
    margin-right: 15px;
    min-width: 60vw;
}

.list li{
    display:inline-block;
    list-style-type: none;
    min-width: 15%;
    height: 50px;
    text-align: center;
    margin-right: 30px;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 3px;
    
}
.list li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.hamburger i {
    margin-right: 20px;
    font-size: 8vh;
    color: white;
    display: none;
    cursor: pointer;
}