@font-face {
    font-family: eb;
    src: url("../fonts/otherworldly-main.ttf") format("truetype");
}

#header-container,
#footer {
    background-color: #252525;
    margin: px;
    padding: 0px;
}

img.logo {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    text-align: center;
}

#cast-containers {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

#char-portrait {
    order: 1;
    flex: 0 0 40%;
    text-align: center;
}

#char-desc {
    order: 2;
    flex: 0 0 60%;
}

#logo {
    order: 1;
    flex: 1 1 20%;
    text-decoration: none;
    color: white;
}


#buttons {
    font-size: 20px;
    padding-top: 50px;
}

a {
    text-decoration: none;
    color: white;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* Internet Explorer 10 and 11 */
    user-select: none;
}

a:hover {
    transition-duration: 0.3s;
    text-shadow: 0px 2px 10px #bce9fd;
}

#buttons:hover {
    transition-duration: 0.3s;
    text-shadow: 0px 2px 10px #bce9fd;
}

a.button {
    display: block;
    margin: 20px;
}

#footer {
    padding-top: 20px;
    padding-bottom: 50px;

}

#footer-fixed {
    padding-top: 20px;
    padding-bottom: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#footer-links,
#header-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

div.comment {
    color: #646464;
}

div.image {
    margin: 30px;
}

body {
    background-color: #1a1a1a;
    color: white;
    font-family: eb;
    padding: 0px;
    margin: 0px;
    font-size: 25px;
}

div.body {
    text-align: center;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

@media only screen and (max-width: 1000px) {
    body {
        font-size: 20px
    }

    #footer-links {
        flex-direction: column;
    }
}