.appbar {
    transition: top 0.3s ease-in-out;
    position: fixed;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    height: 100px;
    background-color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 6;
}

.appbarrow {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}


#appbarBelow {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.belowItem {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    width: 100%;
    height: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-bottom: 2px;
   
}

.belowItem:hover {
    border-radius: 2px;
    transition: ease-in-out 0.4s;
    background-color: beige;
    color: black;
  }
#logo {
    padding-left: 25px;
    display: flex;
    height: 35px;
    max-width: 100%;
}
.appbar .mbmb:hover{
    cursor: pointer;
}

.appbar .icon {
    display: none;
    color: black;
    order: 1;
}


#myLinks {
    font-family: "Poppins-Medium", Helvetica, serif;
    left: 10px;
    right: 10px;
    position: fixed;
    background-color: #1e2427;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    transition: height 0.2s ease-in-out;
    overflow: hidden;
}
#myLinks a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}
#myLinks a:last-child {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}
#myLinks a:hover {
    background-color: #db5461;
    color: #1e2427;
}
#mbmb{
    padding-left: 25px;
    font-family: futura;
    font-size: 30px;
}

@media (max-width: 768px) {
    .appbar .icon {
        display: block;
    }
    #appbarBelow {
        display: block;
    }
    .belowItem {
        display: none;
    }
    .appbar{
        height: 60px;
    }
    

}

@media (min-width: 768px) {
    .appbar .menuButton {
        display: block;
    }

    .appbar .icon {
        display: none;
    }
    #mbmb{
        font-size: 50px;
    }
    
}