.menu, .menu-bar {
    position: fixed;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    z-index:10;
    overflow:hidden;
    box-shadow: 2px 0 18px rgba(0, 0, 0, 0.26);
    width: 5em;
}
.menu li a {
    display: inline-block;
    text-indent: -500em;
    height: 3em;
    width: 2em;
    line-height: 3em;
    text-align:center;
    color: #72739f;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.1s ease-in-out;
}

.menu li a:before {
    font-family: 'Font Awesome 6 Pro';
    speak: none;
    text-indent: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.8em;
}

.menu-button {
    font-size: 3vmin;
}

.std-menu-button {
    font-size: 3vmin;
}

.menu-bar li a:hover,
.menu li a:hover {
    background: #267fdd;
    color: #fff;
}
.menu li a.selected {
    outline: 3px solid darkblue;
    outline-offset: -8px;
}

.menu-bar {
    overflow:hidden;
    left:5em;
    z-index:5;
    width:40vmin;
    display: none;
    height:0;
    transition: all 0.1s ease-in-out;
}

.menu-bar li a{
    display: block;
    height: 1.8em;
    line-height: 1.3em;
    text-align:center;
    color: #72739f;
    text-decoration:none;
    position: relative;
    font-family:verdana;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.1s ease-in-out;
}
.menu-bar li:first-child a{
    height:7vmin;
    background: #267fdd;
    color: #fff;
}

.para {
    color:#033f72;
    padding-left:100px;
    font-size:3em;
    margin-bottom:20px;
}

.open {
    height:100%;
    display: block !important;
}

@media all and (max-width: 500px) {
    .container{
        margin-top:100px;
    }
    .menu {
        height:100%;
        width: 3em;
    }
    .menu li{
        display:inline-block;
    }
    .menu-bar li a{
        width:100%;
        white-space: nowrap;
    }
    .menu-bar{
        width:100%;
        bottom: 0;
        height:0;
        top:0;
        left:3em;
    }
    .std-menu-button {
        font-size: 5vmin;
    }
    .menu-button {
        font-size: 5vmin;
    }
    .open{
        width:auto;
        height:auto;
    }
    .para{
        padding-left:5px;
    }
}
@media screen and (max-height: 34em){
    .menu li,
    .menu-bar {
        font-size:70%;
    }
}
@media screen and (max-height: 34em) and (max-width: 500px){
    .menu{
        height:3.5em;
    }
}
