* {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    /* font-family: 'Fira Mono', monospace; */
    font-family: 'Roboto', sans-serif;
    color: #eee;
}

html {
    background-color: #011111;
}

body {
    max-width: 777px;
    margin: auto;
    padding: 28px;
}

#nav {
    height: 70px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav a {
    margin: 0;
    padding: 14px;
    transition-property: color;
    transition-duration: 0.14s;
    text-decoration: none;
}

#nav a:hover {
    color: #77a572;
    transition-property: color;
    transition-duration: 0.14s;
}

#nav #home {
    text-decoration: underline;
}

h1 {
    font-size: 70px;
}

#homepage-title {
    font-size: 470%;
    margin-bottom: 35px;
    margin-top: 28px;
}

img {
    width: 100%;
    border-radius: 7px;
    margin: 0;
}

p {
    font-size: 21px;
}

p.caption {
    font-size: 14px;
    color: #aaa;
}

footer {
    margin: 70px 0px;
}

footer p {
    font-size: 14px;
    color: #777;
    text-align: center;
}

footer a {
    color: #aaa;
}

/* mobile first design, so: */

/* tablets */
@media (min-width: 735px) {
    #homepage-title {
        font-size: 670%;
    }
}

/* desktop */
@media (min-width: 1000px) {
    #homepage-title {
        font-size: 700%;
    }
}

/* small browser size on desktop */
@media (min-width: 1246px) {
    body {
        max-width: 1000px;
    }
}

