/* donate css: */
:root {
    --primary-color: #5e4d9e;
    --dark-color: #2c1b2d;
    --light-color: #C69AA4;
    --notsolight-color: #B58A94;
    --white-color: #ffffff;
    --header-font: 'Montserrat', sans-serif;
    --body-font: 'Lato', sans-serif;
    margin: 0 auto;
    padding: 0 0px;
}

body {
    font-family: var(--body-font);
    background-color: var(--white-color);
    margin: 0;
    color: var(--dark-color);
    line-height: 1.6;
    overscroll-behavior: none;
}

main-body {
    padding-top: 9vh;
}

.donate-hero {
    background-image: url('https://img.freepik.com/free-vector/sunset-city-background_1092-42.jpg'); /* insert a link of your chosen image! */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black; /* this changes the color of the "donate" text */
    font-size: 4rem;
}

h1 {
    font-family: var(--header-font);
}

p {
    margin: 20px 150px 20px 150px;
    text-align: center; 
}

#red-text {
    color: ''; /* changes the color of the "all donations are..." text */
    font-size: 1.2rem;
}

.large-text {
    font-size: 1.5rem;
}

.small-text {
    font-size: 1.2rem;
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
}

.iframe-container iframe {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 10 / 7;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Optional: fine-tune for mobile */
@media (max-width: 600px) {
    .iframe-container iframe {
        aspect-ratio: 1 / 1.1;
    }
}