/* Center page content both vertically and horizontally */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: futura, sans-serif;
    text-align: center;
    background-color: antiquewhite;
}

h1 {
    font-size: 3em;
    margin: 0.2em 0;
    color: #076c74;
}

p {
    font-size: 1.5em;
    color: #076c74;
}
