@font-face {
    font-family: "Kenney Mini Square";
    src: url("../css/kenney_mini_square.ttf") format("truetype");
}
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Kenney Mini Square", Arial, sans-serif;
    background: #1d0132;
}

.section {
    width: 100%;
    float: left;
}

nav {
    position: fixed;
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    height: 60px;
    z-index: 1;
}
nav .navigation {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav .navigation a {
    padding: 0 32px;
    height: 100%;
    align-items: center;
    display: block;
    line-height: 58px;
    vertical-align: bottom;
    font-size: 24px;
}
nav a {
    color: #fff;
    text-decoration: none;
}
nav a:hover {
    background: #1f0040;
}
nav img {
    height: 40px;
    padding: 10px;
    float: left;
}
nav span {
    padding: 30px 25px 30px 0;
    line-height: 0;
    float: left;
}
@media (max-width: 1000px) {
    nav span {
        display: none;
    }
}

.section .wrapper {
    width: 900px;
    margin: 0 auto;
}

.banner {
    position: relative;
    width: 100%;
}
.banner .background {
    width: 100%;
    height: 1440px;
    position: absolute;
    background-repeat: repeat-x;
    background-image: url("../images/background.png");
    background-position-x: center;
    overflow: hidden;
}
.banner .background img {
    margin-top: 80px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.music {
    position: fixed;
    top: 92px;
    left: 32px;
}

.content {
    position: relative;
    margin-top: 800px;
}
.content .headline {
    display: flex;
    font-size: 64px;
    align-items: center;
}
.content .headline div {
    min-width: 128px;
}
.content .headline div:first-of-type {
    text-align: right;
}
.content p {
    color: #e4e0fb;
    text-align: center;
    font-size: 24px;
}
.content a {
    color: #e4e0fb;
}
.content .hook {
    color: #e4e0fb;
    text-align: center;
    font-size: 32px;
}
.content h1 {
    color: #e4e0fb;
    text-align: center;
    font-weight: normal;
    font-size: 56px;
}
.content h2 {
    color: #e4e0fb;
    text-align: center;
    font-weight: normal;
    font-size: 40px;
    margin-top: 64px;
}
.content ul {
    color: #e4e0fb;
    font-size: 24px;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.content ul li {
    margin-bottom: 0.5rem;
}
.screenshots > * {
    width: 49%;
    margin-bottom: 2%;
    float: left;
}
.screenshots > *:nth-child(even) {
    margin-left: 2%;
}
.screenshots img {
    width: 100%;
}
.characters img {
    vertical-align: middle;
}
.characters .character {
    display: flex;
    background-color: rgba(124, 106, 145, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #e4e0fb;
    margin: 8px;
}
.characters .character.small {
    width: 40%;
}
.characters .character .portrait {
    margin: 0 64px;
}
.characters .character.small .portrait {
    margin: 0 32px;
}
.characters .character .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: left;
}
.characters .character .description:nth-of-type(odd) {
    text-align: right;
}
.characters .character .description .name {
    font-size: 32px;
}
.characters .character .description .profession {
    font-size: 24px;
}
.characters .character.more {
    display: block;
    text-align: center;
}
.characters .character.more div:first-of-type {
    margin: 16px 0;
    font-size: 24px;
}
.characters .character.more img:nth-of-type(4) {
    margin-right: 24px;
}
.characters .character.more img:nth-of-type(5) {
    margin-left: 24px;
}
