#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.menu a {
    color: #fff;
    font-weight: bolder;
    height: 25px;
    text-decoration: none;
    text-align: left;
    padding: 15px;
    font-size: 12px;
}

.menu a:hover {
    border-bottom: 2px solid #1e5469!important;
}



@media (min-width:1024px) {
    .menu {
        position: static;
        margin: auto;
        width: auto;
        height: auto;
        transform: translateX(0%);
        text-align: right;
        float: right;
        display: flex;
        background: rgba(51,51,51,0);
        margin-left: 400px;
    }
    
    .menu a {
        border: none;
        color: white;
        margin-bottom: 5px;
        font-size: 18px;
    }
    
    .menu a:hover {
        border-bottom: 5px solid #1e5469!important;
    
    }

    header label { 
        display: none;
    }
}