/* Organization */

html {
    /* Size */
    width:  100%;
    height: 100%;

    /* Alignment */
    text-align: center;

    /* Layout */
    display:   flex;
    flex-flow: column nowrap;
}

body {
    margin: auto;
}

a {
    padding: 0.5rem;
    margin:  1rem;
}

/* Font */

html {
    font-family: sans-serif;
}

h1 {
    font-family: serif;
    font-size:   2.5rem;
}

/* Theme */

html {
    background: #FCFCFC;
}

h1 {
    color: black;
}

h1 span {
    color: crimson;
}

p {
    color: black;
}

a {
    /* Color */
    color:      white;
    background: crimson;

    /* Border */
    border-radius: 8px;
}

/* Animation */

body {
    animation: devanesce 0.5s;
}

@keyframes devanesce {
    from {
        translate: 0 -2em;
        opacity: 0;
    }
}
