body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
}

.videos-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.video {
    margin-bottom: 30px;
}

/* Keeps correct 16:9 aspect ratio */
.video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: none;
}

.header {
    background-color: #f5f5f5;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}