* {
    font-family: "Playfair Display", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #fcfcfc;
}

header {
    display: flex;
    background: #fff;
    justify-content: space-between;
    padding: 2rem;
}

header .mobile-nav-trigger {
    display: none;
}

header a {
    color: #702102;
    text-decoration: none;
}

header a.active {
    text-decoration: underline;
}

header > a {
    font-size: 1.25rem;
}

nav {
   background: #fff; 
}

nav a {
    margin-left: 1rem;
}

h1, h2 {
    color: #a06d41;
}

h3 {
    font-size: 1.4rem;
}

h3, h4, h5, h6, p, form {
    color: #702102;
}

.main-logo {
    display: block;
    max-height: 500px;
    max-width: 100%;
    margin: auto;
}

.main-buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
}

.main-buttons a {
    background: #702102;
    padding: 1rem 4rem;
    border-radius: 2rem;
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}

section {
    background: #f5edde;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    justify-content: center;
    padding: 0 2rem;
}

article {
    background: #f5edde;
    padding: 2rem;
    text-align: center;
}

.donate-reasons {
    width: calc(33.33% - 2rem);
    display: inline-flex;
    flex-direction: column;
    padding: 1rem;
}

.content {
    padding: 2rem;
}

.center {
    text-align: center;
}

form {
    width: 50%;
    margin: 2rem auto;
}

form label {
    display: block;
}

form input[type="text"] {
    display: block;
    background: transparent;
    border: 1px solid #702102;
    border-radius: 3rem;
    width: 100%;
    margin-bottom: 1rem;
    height: 2rem;
    padding: 0 1rem;
}

form button[type="submit"] {
    background: #702102;
    padding: .5rem 4rem;
    border-radius: 2rem;
    color: #fff;
    text-decoration: none;
    margin-top: 1rem;
    border: none;
}

footer {
    padding: 2rem;
    background-color: #702102;
    color: #fff;
}

footer a {
    color: #fff;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li:first-of-type {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#form-container-RGYHJJDY2F9NJ {
    max-width: 900px !important;
    margin: auto;
}

#form-container-RGYHJJDY2F9NJ > h3 {
    display: none;
}


@media only screen and (max-width: 768px)   {
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
    }

    nav.opened {
        display: block;
    }

    nav a {
        display: block;
        margin: 1rem;
    }

    header .mobile-nav-trigger {
        display: block;
        background: transparent;
        border: none;
        position: relative;
        width: 1.75rem;
    }

    header .mobile-nav-trigger::before {
        background: #702102;
        content: "";
        height: 2px;
        position: absolute;
        transition: .3s;
        width: 1.75rem;
        left: 0;
        top: 0;
    }
    header .mobile-nav-trigger::after {
        background: #702102;
        content: "";
        height: 2px;
        position: absolute;
        transition: .3s;
        width: 1.75rem;
        left: 0;
    }
    header .mobile-nav-trigger.opened::before {
        transform: rotate(45deg);
        top: initial;
    }
    header .mobile-nav-trigger.opened::after {
        transform: rotate(-45deg);
    }

    .main-buttons {
        flex-direction: column;
        margin: 2rem 0;
    }

    .main-buttons a {
        margin: 1rem 0;
    }

    form {
        width: 100%;
        margin: 2rem auto;
    }

    .donate-reasons {
        width: 100%;
        padding: 0;
        margin: 2rem 0;
    }

    #form-container-RGYHJJDY2F9NJ {
        max-width: 100% !important;
    }
}