nav{
    background-color: rgb(241, 241, 241);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 8vh;
    height: 120px;
}

.logo{
    display: flex;
    background-color: rgb(241, 241, 241);
    justify-content: space-around;
    text-align: center;
}

.logo-img {
    position: absolute;
    background-color: rgb(241, 241, 241);
    left: 80px;
}

.logo-img img{
    width: auto;
    height: 100px;
}

.logo h1{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width:900px){
    .logo-img {
        display: none;
    }
    
}