:root {
    --primary: #5D0;
    --text: #BBB;
    --subtle: rgba(205, 6, 77, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.2em;
    background-color: #222;
    color: var(--text);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee', display;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--primary);
}

h1 {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 7vw;
    margin-bottom: 0em;
}

@media screen and (min-width: 1000px) {
    h1 {
font-size: 3em;
    }
}

@media (max-width: 480px) {
    body {
font-size: 1em;
    }
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header p {
    margin-top: 10px;
    font-weight: bold;
}

a {
    color: var(--primary);
}

main {
    border: 2px solid;
    padding: 0 10px;
    color: #BBB;
}
