@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

body {
    background-color: #fff;
    margin: 0;
    color: #282299;

    p {
        line-height: 1.8em;
    }
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Karla';
}


@keyframes wavy {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.section {
    width: 100%;
    padding-bottom: 20px;
    overflow-x: hidden;
}

.section-content {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: space-around;
}

/* .section-title {
    width: 50%;

    h2 {
        font-family: 'Sorts Mill Goudy', 'Mate';
        padding-top: 10px;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 5px;
    }
} */

/* Media queries */
@media (max-width: 1200px) {
    .section-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-content {
        width: auto;
    }
}

.grecaptcha-badge {
    display: none;
}