/*!
 * Forsythia
 *
 * By Lysianthus of Affelius
 * https://affeli.us
 *
 * License: http://creativecommons.org/licenses/by-nc-nd/4.0/
 */

@font-face {
    font-family: 'Serendipity Script';
    font-weight: normal;
    font-style: italic;
    src: url("../fonts/Serendipity Script.woff") format("woff");
    font-display: swap;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    font-size: 125%;
}

body {
    padding: 0 5%;
    background: -webkit-linear-gradient(top left, #23074d, #cc5333);
    background: linear-gradient(to bottom right, #23074d, #cc5333);
    font-family: "Courier New", monospace;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
}

.container {
    margin: 100px auto 50px;
    padding: 50px;
    width: 600px;
    max-width: 100%;
    background: -webkit-linear-gradient(top left, white, rgba(255, 255, 255, 0.5));
    background: linear-gradient(to bottom right, white, rgba(255, 255, 255, 0.5));
    border-radius: 10px;
}

.title {
    margin: 0;
    padding: 0;
    font-family: "Serendipity Script", cursive;
    font-weight: normal;
    font-style: normal;
    font-size: 3rem;
    text-align: center;
    color: #23074d;
}

.description {
    margin: 1em 0;
    padding: 0;
    font-family: "Courier New", monospace;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
}

.heading {
    margin: 2em 0 1em;
    padding: 0;
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-style: normal;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #cc5333;
}

a {
    border-bottom: #cc5333 1px solid;
    text-decoration: none;
    color: #23074d;
}

.links {
    margin: 1em 0;
    padding: 0;
    line-height: 1.5;
}

.links__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#credit {
    margin: 0 0 100px;
    padding: 0;
    text-align: center;
    font-size: 0.8em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

#credit a {
    color: #fff;
}