/* Public domain 2015. All rights waived.  */

@font-face {
    font-family: Bungee;
    src: url("../fonts/Bungee/Bungee-Regular.ttf");
}

:root {
    /* Colors */
    --deep-blue: #0C1E36;
    --purple: #321130;
}

body {
    background-color: var(--deep-blue);
    color: white;
    margin: 0px;
}

h1, h2, h3 {
    font-family: Bungee, sans-serif;
}

h2 {
    font-size: 2em;
    font-weight: normal;
    margin: 1em 1em 2em 1em;
}

ul.button-group {
    padding: 0px;
}

ul.button-group li {
    display: inline-block;
}

.flex {
    display: flex;
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-auto {
    flex: auto;
}

.flex-initial {
    flex: initial;
}

.cover {
    background-color: var(--deep-blue);
    background-image: url("../img/platform-bg.png"),
                      url("../img/floor-bg.png"),
                      url("../img/space-bg.png");
    background-position: center, bottom, 20% -550px;
    background-repeat: no-repeat, repeat-x, no-repeat;
    height: 504px;
}

.summary-box {
    height: 504px;
    max-width: 972px;
    margin: auto;
    position: relative;
}

.summary {
    position: absolute;
    top: 100px;
    left: 30px;
    width: 400px;
}

.summary h1 {
    font-size: 72px;
    margin: 5px 0px;
}

.button-featured:link,
.button-featured:visited {
    background-color: var(--deep-blue);
    border-radius: 5px;
    border-style: solid;
    border-width: thin;
    display: inline-block;
    font-size: 0.8em;
    margin: 10px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    width: 150px;
}

.button-cyan:link,
.button-cyan:visited {
    color: cyan;
}

.button-magenta:link,
.button-magenta:visited {
    color: violet;
}

.button-featured:active,
.button-featured:focus,
.button-featured:hover {
    border-color: white;
    color: white;
}

.license {
    font-size: 0.8em;
}

.license a:link, .license a:visited {
    color: #00FFFF;
    text-decoration: none;
}

.features {
    background: linear-gradient(var(--purple), var(--deep-blue));
    padding: 1.5em;
}

.feature {
    margin: 20px;
    min-height: 350px;
    width: 450px;
}

.feature img {
    max-width: 100%;
}

.showcase {
    background-color: black;
    background-image: url("../img/separator-top-bg.png"),
                      url("../img/separator-bottom-bg.png");
    background-position: top, bottom;
    background-repeat: repeat-x, repeat-x, repeat;
    padding: 100px 0px;
}

.comment {
    margin: auto;
    max-width: 700px;
}

.comment p {
    background-color: var(--deep-blue);
    border-radius: 0em 0.4em 0.4em 0em;
    box-sizing: border-box;
    font-size: 18px;
    height: 68px;
    line-height: 68px;
    margin-left: 40px;
    padding: 0px 30px;
    position: relative;
}

.comment p img {
    position: absolute;
    top: 0px;
    left: -23px;
}

.text-centered {
    text-align: center;
}

.author-stamp {
    padding: 5em 1.5em;
}
