body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Helvetica', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    text-align: center;
    box-sizing: border-box;
}
.paypal-donation {
    text-align: center;
    margin-top: 20px;
}

.paypal-donation h2 {
    color: #061340;
    font-size: 1.5em;
}

.paypal-donation form {
    margin-top: 10px;
}
iframe {
    width: 100%;
    max-width: 1000px; /* Set a maximum width for the iframe */
    height: 2000px; /* Set the desired height of the iframe */
    padding: 50px; /* Adjust padding as needed */
    box-sizing: border-box; /* Include padding in the width and height */
    margin: 0 auto; /* Center the iframe horizontally */
}
/* Add this CSS to your existing stylesheet */
#iframe-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
}

#iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.button-container {
    margin-bottom: 10px; /* Adjust the value as needed */
}

/* Media query for smaller devices */
@media screen and (max-width: 600px) {
    #iframe-container {
        padding-top: 100%; /* Adjust this value to fit your design */
    }
}

header, footer {
    background-color: #061340;
    color: #F1D034;
    padding: 15px 20px;
}

#event-image.enlarged {
    max-width: 100%;
    height: auto;
}

nav ul, footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li, footer li {
    margin: 0 20px;
}

nav a, footer a {
    text-decoration: none;
    color: #F1D034;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease-in-out;
}

nav a:hover, footer a:hover {
    color: #ffc107;
}

#quote, #events {
    padding: 30px 20px;
}

.box, .yellow-box {
    background-color: white;
    padding: 20px;
    margin: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box p {
    font-size: 1.5em;
    font-weight: bold;
}

#events h2 {
    font-size: 1.5em;
    font-weight: bold;
}

#events ul {
    list-style: none;
    padding: 0;
}

#events ul li {
    margin: 15px 0;
    font-size: 1.1em;
}

img#event-image {
    max-width: 50%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #061340;
    background-color: #F1D034;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #061340;
    color: navy;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact {
    margin-top: 20px;
    text-align: center;
}

#contact p {
    margin: 10px 0;
    font-weight: bold;
}

#contact a {
    text-decoration: none;
    color: #F1D034;
    display: block;
    margin-top: 5px;
}

#contact a.email {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#contact a.email img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#facebook-icon {
    width: 30px;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    nav ul, footer ul {
        flex-direction: column;
        align-items: center;
    }

    nav li, footer li {
        margin: 10px 0;
    }
}
