body#body main {
    margin-top: 0;
}

main > .content {
    margin: 0 auto;
    color: #444;
}

    main > .content p, main > .content ul {
        max-width: 800px;
        margin: 1em auto;
    }

.content p {
    line-height: 160%;
}

    .content p ul li {
        line-height: 130%;
    }

body main .hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

@media screen and (max-width: 700px) {

    body main .content {
        margin: 0 2%;
    }

    body main > .content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    body main .hero .content {
        margin: 0 auto;
    }

    body header .buttons a {
        background: rgba(128, 128, 128, 0.82);
    }
}

main .hero,
main .hero h1,
main .hero h2 {
    color: white;
}

    main .hero h1 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        text-align: center;
        letter-spacing: 0;
        font-family: Roboto, sans-serif;
    }

    main .hero h2 {
        margin-top: 10px;
        font-size: 13px;
        font-weight: 100;
        text-align: center;
        font-family: roboto;
    }


body.loaded main .hero {
    position: relative;
    filter: brightness(1);
    opacity: 1;
    transition: filter 2s, opacity 2s;
    background-color: #848484;
}

main > .content h1 {
    font-size: 50px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 900;
}

.about-image {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    max-width: 250px;
    text-align: center;
}

header .buttons {
    display: grid;
}

    header .buttons a {
        flex: 1;
        color: white;
        margin: 2px;
        border-radius: 2px;
        padding: 7px 20px;
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        background: rgba(177, 177, 177, 0.43);
        font-size: 13px;
        border: solid 1px transparent;
    }

        header .buttons a:hover {
            border: solid 1px;
        }

