.top-bar{
    font-family: 'Courier New', Courier, monospace;
    position: sticky;
    background-color: var(--background);
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
    height: 54px;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;

    z-index: 10;
}


.marginsTop{
    padding-left: 15%;
    padding-right: 15%; 
    margin: 0;
}

.top-left{
    float: left;
    height: 54px;
    width: 50%;
    vertical-align: bottom;
    color: var(--accent);
    font-size: 1.8em;
    font-weight: 600;
    line-height: 54px;
    font-family: Arial, Helvetica, sans-serif;
}
.top-left a{
    position: absolute;
    vertical-align: middle;
}

.top-right .desktop_menu{
    justify-content: right;
    text-align: right;
    width: 50%;
    float: right;
    height: 54px;
    color: var(--accent);
    font-size: 1em;
    line-height: 34px;
    color: var(--text);
    font-family: 'Courier New', Courier, monospace;
    display: inline-flex;
    
}

.top-right .desktop_menu div{
    width: max-content;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    line-height: 44px;
    margin-left: 5%;
    border-radius: 10px;
}
.top-right  .desktop_menu div:hover{
    cursor: pointer;
    animation-name: pointerText;
    animation-duration: 0.5s;
    
    color: var(--accent);
}
.top-right{
    position: relative;
}

.top-right .mobile_menu{
    width: auto;
    height: auto;
    position: relative;
}
.top-right #topbar_menu{

    height: auto;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    position: absolute;
}
.top-right #topbar_menu img{
    height: 12.5px;
    z-index: 100;
    margin-top: calc(47.5px/2);
}


#mobileMenu{
    position: absolute;
    top: 54px;
    padding:0;
    width: 100vw;
    opacity: 10;
    background-color: var(--background);
    text-align: center;
}


.mobile_menu #mobileMenu div{
    height: 30px;
    margin-top: 0;
    opacity: 0;
    display: none;
    margin-right: 10px;
    margin-left: 10px;
    line-height: 20px;
    color: var(--text-light);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.0em;
    transition: all 2s;
}
.minHeight {
    transition: 0.5s ease;
    border-bottom: transparent;
    height: 0px;
}

.maxHeight {
    transition: 0.5s ease;
    height: 60px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.1);
}

@keyframes pointerText {
from {color: var(--text);}
to {color: var(--accent);}
}
