h1, section, body > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

h1 {
    margin-top: 130px;
    margin-bottom: 40px;
    font-family: 'HelveticaNeueBold', sans-serif;
    color: #1952c8;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

h3 {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
}

section p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

section a {
    color: #1952c8;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

section a:hover {
    border-bottom: 1px solid #1952c8;
}

body > p:last-of-type {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        margin-top: 110px;
    }

    h2 {
        font-size: 1.2rem;
    }
}