.header-button-icon{
    transform: scale(1.5);
    -webkit-transform-origin-x: left;
    -webkit-transform-origin-y: top;
}

.header-button{
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 5px;
    padding: 3px 5px 5px;
    transition-duration: .2s;
    transition-property: background-color;
    cursor: pointer;
}
.header-button-left{
    float: left;
    margin-left: 5px;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.header-button.header-button-left:hover{
    background-color: rgba(255,255,255,0.3) !important;
    color: white !important;
    text-decoration: none;
}

.header-button-right{
    float: right;
    margin-right: 5px;
    color: black;
    border: 1px solid rgba(0,0,0,0.3);
}
.header-button.header-button-right:hover{
    background-color: rgba(0,0,0,0.3) !important;
    color: inherit !important;
}
#menu.header-button{
    padding-left: 8px;
}

#menu::after{
    content: none;
}

nav{
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #3D201B 0%, #743C2B 35%, rgba(0,212,255,1) 100%);
    box-shadow: 0 3px 5px black;
    position: fixed;
    z-index: 1000;
}

#content-inline{
    width: 100%;
    height: 100%;
    padding: 20px 40px 50px;
    backdrop-filter: blur(50px);
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    color: white;
    overflow: auto;
}
