*{
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

body{
    min-width: 1300px;
}

#page-container{
    width: calc(100% - 2px);
    margin: auto;
}

#header{
    background: var(--background-back-light);
    color: var(--font-border-light);
    top: 1px;
    line-height: 6vh;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: calc(100% - 2px);
    z-index: 1;
}

#header ul{
    display: flex;
    list-style: none;
    width: 25%;
}

#header ul li{
    padding: 0 15px;
}

ul#header-right-actions {
    justify-content: right;
}

#header a{
    text-decoration: none;
    color: var(--font-border-light);
    font-size: 2vh;
}

#header i{
    text-shadow: 1px 1px 2px black;
}

#content-title{
    text-align: center;
    font-size: 3vh;
    color: var(--font-border-light);
    width: 70%;
    text-align: center;
    text-shadow: 1px 1px 1px black;
}

#content{
    padding-top: 1vh;
    min-height: calc(89vh - 51px);
    padding-bottom: 50px;
}

#footer{
    background: var(--background-back-light);
    color: var(--font-border-light);
    height: 5vh;
    line-height: 5vh;
    text-align: center;
    position: fixed;
    bottom: 1px;
    width: calc(100% - 2px);
    border-radius: 5px;
    text-shadow: 1px 1px 1px black;
}

.menu-li span{
    display: none;
    color: var(--background-btn-light);
    text-shadow: 1px 1px 2px black;
}

#nav-right{
    justify-content: right;
}