body, header, main, .announcement, footer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

body {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    margin: 0;
    padding: 40px;
    min-height: 100vh;
    height: fit-content;
    box-sizing: border-box;
    background-color: #fffefb;
    flex-flow: column;
    line-height: 1.5rem;
}

* {
    font-family: "Geist", sans-serif;
    font-weight: 650;
    font-size: 20px !important;
}

a {
    color: black;
    text-underline-offset: .3rem;
    text-decoration-thickness: 2px;
}

h1 {
    margin: 0;
}

.fade-in {
    opacity: 0;
    animation: fade-in 1s 1s ease forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

header {
    height: fit-content;
}

main {
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

footer {
    align-items: end;
}

.logo {
    width: 650px;
    max-width: 100%;
}

.announcement {
    font-weight: 800;
    padding-top: 1rem;
}

.info {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
}

@media screen and (min-width: 750px) {
    .info {
        max-width: 700px;
    }
}

main form {
    padding: 0 !important;
}

.fd-form-content * {
    font-size: 16px !important;
}

.social-instagram {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 800;
}

.social-instagram img {
    width: 2rem;
}

@media screen and (max-width: 749px) {
    * {
        font-size: 16px !important;
    }

    main {
        padding: 40px 0 50px 0;
    }

    .fd-form-content * {
        font-size: 14px !important;
    }

    .announcement {
        padding-top: .5rem;
    }
}