html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #050505 url('../img/bg.png') repeat;
    font-family: Tahoma, Calibri, Verdana, Geneva, sans-serif;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1em 10em 1em;
    box-sizing: border-box;
}

.main {
    max-width: 700px;
    margin: 10% auto;
}

.header {
    background-color: #440000;
    background-image: url('../img/header.png');
    background-position: 12%;
    background-size: cover;
    min-height: 120px;
    display: flex;
    justify-content: center;
    justify-items: center;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border: solid 1px black;
    border-bottom: none;
}

.logo {
    align-self: center;
    max-width: 80%;
}

.content {
    width: 100%;
    background-color: #1a1a1a;
    border: solid 1px black;
    border-top: none;
    padding: 0.5em 2em 1em 2em;
    box-sizing: border-box;
    color: #999;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
	text-align: center;
}

.discord-button-container {
    text-align: center;
}

.discord-button {
    border-radius: 10px;
    background: #2C2F33;
    display: inline-block;
    padding: 8px 12px 4px 12px;
    margin: 5px auto;
}

.discord-button img {
    height: 30px;
}

@media only screen and (max-width: 500px) {
    .main-container {
        align-items: start;
    }
}