@font-face {
    font-family: 'Dimitri'; /*a name to be used later*/
    src: url('../fonts/dimitri.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Roboto'; /*a name to be used later*/
    src: url('../fonts/Roboto-Regular.ttf'); /*URL to font*/
}

body {
    background-color: #eee;
    font-family: 'Roboto';
    margin: 0;
}

#page {
    background-color: #eee;
    width: 100%;
    /*
    margin-left: auto;
    margin-right: auto;
    */
    padding: none;
}

#header {
    background: linear-gradient(0deg, #111 0%, #444 100%);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    z-index: 100;
}

#content {
    width: 80%;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    padding-top: 80px;
}

#footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    background-color: #111;
    width: 100%;
    height: 30px;
    z-index: 100;
}

#navbox {
    margin-left: 20px;
    height: 30px;
    margin-top: 30px;
    width: fit-content;
}

#navbox a {
    color: #eee;
    text-decoration: none;
}


#navbox a:hover {
    color: #1792b8;
    text-decoration: none;
}

#navbox a:visited {
    text-decoration: none;
}

#navbox div {
    display: inline-block;
    padding: 2px 10px 2px 10px;
    height: 20px;
    line-height: 20px;
    border-left: solid 1px #eee;
    border-bottom: solid 1px #eee;
}

#navbox div:hover {
    color: #1792b8;
    border-left: solid 1px #1792b8;
    border-bottom: solid 1px #1792b8;
}

#navbox div.selected {
    color: #1792b8;
    border-left: solid 1px #1792b8;
    border-bottom: solid 1px #1792b8;
}

#logo {
    position: fixed;
    right: 20px;
    top: 2px;
    width: 80px;
    height: 80px;
}

#copyleft {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

#license {
    height: 25px;
    margin-top: -5px;
    vertical-align: middle;
    margin-right: 3em;
}

#author {
    display: inline-block;
    padding-top: 5px;
    line-height: 24px;
}

#prevnext {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    height: 30px;
}

#prevnext img {
    height: 40px;
    opacity: 40%;
    transition: opacity .5s ease-out;
}

#prevnext img:hover {
    opacity: 100%;
    transition: opacity .5s ease-out;
}


#prev {
    position: fixed;
    left: 20px;
    bottom: 55px;
    transform: rotate(180deg);
}

#next {
    position: fixed;
    right: 20px;
    bottom: 55px;
    opacity: 40%;
}

h1 {
}