@font-face {
    font-family: font;
    src: url(font.otf);
}
* {
    margin: 0;
    padding: 0;
}
html {
    background: #FFFCBF;
    font-family: font;
}
body {
    color: black;
}
header {
    background: #8ECC5B;
}
#navbarBottom {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #629935;
    text-align: center;
}
footer {
    background: #8ECC5B;
    padding-left: 2px;
}
section {
    max-height: 200px;
    min-height: 200px;
    line-height: 19px;
    font-size: 19px;
    padding: 5px;
    border-top: #B3AE4F solid 1px;
    border-bottom: #B3AE4F solid 1px;
    border-right: none;
    border-left: none;
    overflow: auto;
}
section:first-child {
    border-top: none;
}
section:last-child {
    border-bottom: none;
}
section>div:nth-child(1) {
    line-height: 200px;
    font-size: 30px;
}
section>div:nth-child(2) {
    font-family: sans-serif;
}
i {
    color: black;
    padding-left: 3px;
}
a:link {
    color: #8C7FFF;
}
a:visited {
    color: #8C7FFF;
}
a:hover {
    color: #8490CC;
}
a:active {
    color: #8490CC;
}
#navbarTop li {
    display: inline-block;
}
#navbarTop li:last-child {
    float: right;
    font-size: 30px;
    margin-right: 5px;
}