html {
    height: 100%;
}

body {
    background-image: linear-gradient(
        to bottom,
        #FFD87F,
        #FCBE7C,
        #FF8351,
        #FF6C81
        );
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

#main-wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    background-color: #391634;
    color: white;
    min-height: 100%;
}

#header {
    background-color: black;
    color: white;
    font-family: arial;
    padding: 0 20px 0 20px;
    display: flex;
    align-items: center;
}

#header a, footer a {
    color: white;
    text-decoration: none;
}

#header img {
    float: left;
    height: 36px;
    width: 36px;
    margin: 16px;
}

#main-menu {
    background-color: #810065;
    margin: 0;
}

#main-menu a {
    color: white;
    text-decoration: none;
}

#main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    font-family: 'arial';
    font-size: 1.1em;
}

#main-menu li {
    padding: 8px;
    font-size: .8em;
}

.full-column {
    background-color: #010101;
    color: white;
}

.full-column, .large-column, .small-column {
    padding: 20px;
    color: rgb(255, 255, 255);
    display: block;
    min-height: 100px;
}

.column-holder {
    display: flex;
    font-family: sans-serif;
}

.large-column {
    flex-grow: 2;
    background-color: white;
    color: black;
}

.small-column {
    flex-grow: 1;
    background-color: pink;
    color: black;
}

#staff-list {
    background-color: black;
    color: #FE5EE4;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-family: sans-serif;

}

#splash {
    background-color: #010101;
    background-image: url(../images/monstrifex/splash-dark.jpg);
    background-size: 45%;
    background-position: right;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 48% 80px 50px;
}

#creator-list {
    display: flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-family: sans-serif;
}

.creator-mini {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 12px;
    text-align: center;
}

.avatar-disc {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: pink;
    display: inline-block;
    overflow: hidden;
}

.avatar-disc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#footer {
    background-color: #391634;
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-size: 0.8em;
}

img {
    max-width: 100%;
}

a:visited {
    color: inherit;
    font-style: italic;
}