@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,700&display=swap');

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

body {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    color: #1a1a1a;
}

nav {
    font-size: 1.3em;
    font-weight: 700;
    padding: 1em;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20vh auto 0 auto;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 1em;
}

p {
    line-height: 2.5em;
}


@media screen and (max-width: 580px) {
    nav {
        font-size: 1.3em;
        font-weight: 700;
        padding: 0.2em;
    }

    .container {
        margin: 10vh auto 0 auto;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 1em;
    }

    strong {
        display: block;
        margin-top: 1.5em;
    }
}