/* =========================
    Body Defaults
========================= */

body {
    margin: 0;
    background: #0f0f0f;
    color: #fff;

    display: grid;
    place-items: center;
    height: 100vh;
}

/* =========================
    Links
========================= */

a {
    display: inline-block;
    color: #ee792b;
    font-weight: bold;
    text-decoration: none;

    text-shadow:
        1px 1px 10px #c26b31;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        transform 0.25s ease;
}

a:hover {
    color: #ee2b2b;
    text-shadow:
        1px 1px 10px #c23131;
    transform: scale(1.01);
}

/* =========================
    Content
========================= */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}