body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
}

.banner {
    background-color: #ffffff;
    /*padding: 20px;*/
}

.banner img {
    max-width: 100%;
    height: auto;
}

.audio-banner {
    padding: 20px 0;
    /*width: 100%; /* Full width */
    text-align: center;
}

.audio-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #2b2757;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.audio-container h3 {
    color: #f9f9f9;
    font-size: 18px;
    margin: 0 0 10px;
    text-align: center;
}

/* .audio-banner h3 {
    color: #2b2757; 
    font-size: 24px;
    margin: 0 0 20px; 
} */

.audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    /*background-color: #2b2757; /* Button color */
    background-color: #EA8A1E;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.play-button svg {
    width: 20px;
    height: 20px;
}

.play-button:focus {
    outline: none;
}

.donate-banner {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.donate-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.donate-banner .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    min-width: 400px;
    color: white;
    border-radius: 8px;
}

.donate-banner h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

iframe {
    width: 100%;
    height: 50vh;
    border: none;
}

.poster-heading {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #2b2757; /* Matching the color scheme */
    text-align: center;
}