/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'GT America';
    src: url('../fonts/gt-america/GT-America-Condensed-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PP Acma';
    src: url('../fonts/pp-acma/PPAcma-Semibold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "GT America", Arial, sans-serif;
    font-size: 18px;
    background-color: #F5F5EF;
    color: #333;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    position: absolute;
    top: 32px;
    left: 32px;
}

.container {
    display: block;
    text-align: center;
    padding: 1em;
}

.website-url {
    font-style: italic;
    background-color: #EAE9DE;
    padding: 0.75em 1.5em;
    border-radius: 80px;
    display: inline-block;
    margin: 0;
}

h2 {
    font-family: 'PP Acma', sans-serif;
    font-weight: normal;
    font-size: 48px;
    line-height: 125%;
    margin: 24px 0;
    text-align: center;
}

p {
    margin-bottom: 15px;
    text-align: center;
    padding: 0 0.5em;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #616334;
}

@media screen and (max-width: 1000px) {
    html,
    body {
        font-size: 16px;
    }

    h2 {
        font-size: 40px;
    }
}
