html {
    margin: 0;
    padding: 0;
}

body {
    background: url("../images/back.gif") repeat;
    background-color: #b89fab;
    animation: bg-scroll 3s infinite linear 0s;
    font-family: 'Grandstander', cursive;
}

main {
    background-color: #d9ccdf;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 60%;
}

header {
    background-color: #5a3f7e;
    text-align: center;
    font-size: 20px;
    height: 12%;
}

section {
    height: 100%;
}

nav {
    background-color: #8d6eb4;
    width: 20%;
    padding: 2em;
}

nav div {
    padding: 1em;
    font-family: 'Darumadrop One', cursive;
}

nav div:hover {
    background-color: #ae94cf;
    transition: 1s;
}

nav a {
    text-decoration: none;
    color: inherit;
}

/* Classes */

.flex-align {
    display: flex;
    justify-content: center;
}

.flex-align-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-container-1 {
    display: flex;
    flex-direction: column;
}

.flex-container-2 {
    display: flex;
    flex-direction: row;
}

.content-body {
    overflow-y: scroll;
    width: 80%;
    padding: 2em;
}

.text-center {
    text-align: center;
}

.move-center {
    display: flex;
    align-self: center;
}

/* Animation */

@keyframes bg-scroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 200px 200px;
    }
}