*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    color: white;
}

h1 {
    font-weight: bold;
}

.centered-heading {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.video {
    position: relative;
    width: 100%;
    max-width: 800px;  /* Prevents it from growing too large */
    padding-bottom: 56.25%; /* This gives it a 16:9 aspect ratio */
    margin: 0 auto;  /* Centers the video */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.donations {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#donate-img {
    max-width: fit-content;
    width: 10em;
    border-radius: 20%;
}

#donate-img:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}