body {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    font-family: var(--font-family-body);
    background: var(--background-color-body);
    color: var(--text-color-body);
}

header,
main,
footer {
    padding: var(--gap);
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-size: var(--step-5);
    align-self: flex-start;
}

h2 {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Vollkorn', serif;
    /* font-family: 'Playfair Display', serif;
    font-family: 'Major Mono Display', monospace; */
    font-size: var(--step-4);
}

fullfrontal-logo h1 a {
    background: url('./fullfrontal-logo.svg') no-repeat left top;
    text-indent: -9999px;
    display: block;
    background-size: contain;
    min-width: 200px;
    min-height: 200px;
}

fullfrontal-hero h2 {
    text-align: center;
    padding: 20px;
}

fullfrontal-contact-form form {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

fullfrontal-contact-form form input {
    border: none;
    border-bottom: 3px solid black;
    width: calc(100vw - (var(--gap) * 2));
    max-width: 500px;
    font-size: 32px;
    background: white;
    color: black;
}

fullfrontal-contact-form form button {
    padding: 10px;
    border: 10px;
    color: white;
    background: black;
    font-weight: 700;
    line-height: 32px;
}

fullfrontal-contact-form-submit p {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0;
}

.hide {
    display: none;
}


fullfrontal-offering>article {
    padding: 20px 0;
}

fullfrontal-hero h2 {
    text-align: center;
    padding: 20px;
}

@media (width > 768px) {
    fullfrontal-contact-form form {
        align-items: center;
        margin: 25px 0;
    }

    fullfrontal-offerings>section {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 25px;
    }

    fullfrontal-contact-form form {
        justify-content: center;
        flex-direction: unset;
    }
}