.container{
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    font-family: 'Courier New';
    /* background-color: rgb(58, 44, 44); */
    background-color: white;
    display: flex;
    flex-direction: column;
}

.header{
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: space-between;
    /* --backgr: linear-gradient(rgb(40, 26, 26), rgb(58, 44, 44)); */
    --backgr: linear-gradient(rgb(0, 3, 88), rgb(0, 155, 186));
    background: var(--backgr);
}

.desktop-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    background: var(--backgr);
    user-select: none;
}

.desktop-menu:hover{
    cursor: pointer;
    /* background: rgb(68, 54, 54); */
    background: rgba(0, 155, 186, 0.632);
}

.body{
    overflow-y: auto;
    height: 100%;
    justify-content: space-between;
    overflow-x: hidden;
    animation-name: fadebody;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    display: flex;
    flex-direction: row;
}

.loadbar{
    width: 100%;
    height: 3px;
    display: none;
    flex-direction: row;
    position: absolute;
}

.loadprog{
    /* background-color: blanchedalmond; */
    background-color: rgb(0, 155, 186);
    width: 20%;
    animation-name: slidein;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}
  
@keyframes slidein {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(500%);
    }
}

.menu{
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.dropdown{
    display: none;
    position:absolute;
    /* top: 10%; */
    width: 100%;
    flex-direction: row;
    color: white;
    justify-content: space-between;
    /* background: linear-gradient(rgb(40, 26, 26), rgb(58, 44, 44)); */
    background: linear-gradient(rgb(0, 155, 186), rgb(0, 3, 88));
    overflow-x: auto;
    animation-name: navslide;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    z-index: 99;
    opacity: 0.9;
}

@keyframes navslide {
    0% {
        transform: translateY(-15%);
        opacity: 0.1;
    }
    33% {
        transform: translateY(-10%);
        opacity: 0.4;
    }
    67% {
        transform: translateY(-5%);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes fadebody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}