body {
    background: rgb(2,15,0);
    background: linear-gradient(90deg, rgba(2,15,0,1) 0%, rgba(136,136,136,1) 35%, rgba(0,8,0,1) 100%);
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    min-height: 100vh; /* Set the height of the body to fill the viewport */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange children in a column */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    font-family: sans-serif; /* Set font-family to sans-serif */
    color: white; /* Text color */
}

h1 {
    color: rgba(100, 100, 100, 0.5); /* Text color */
    text-align: center; /* Center the heading */
    font-size: 40px; /* Larger font size */
    margin-bottom: 15px; /* Spacing below the heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
    animation: jumpIn 1s ease-in-out, changeColor 1s ease-in-out 1s forwards; /* Add animations */
}

@keyframes jumpIn {
    0% {
        transform: translateY(-90%);
    }
    50% {
        transform: translateY(-40%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes changeColor {
    from {
        color: rgba(150, 150, 150, 0.6);
    }
    to {
        color: rgba(255, 255, 255, 0.6); /* Text color */
    }
}

h12 {
    color: rgba(255, 255, 255, 0.7); /* Text color */
    text-align: center; /* Center the heading */
    font-size: 36px; /* Larger font size */
    margin-bottom: 20px; /* Spacing below the heading */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
}

.buttons {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange children in a column */
    align-items: center; /* Center buttons horizontally */
}

.button {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 30px; /* Add border radius */
    padding: 15px 30px; /* Increase padding for larger buttons */
    margin: 10px 0; /* Margin between buttons */
    font-size: 24px; /* Larger font size */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Add transition effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Add shadow */
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.4); /* Lighter background color on hover */
    color: black; /* Change text color */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Adjust shadow on hover */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@media screen and (max-width: 600px) {
    .video-container {
        margin-bottom: 20px; /* Add margin below each video container */
    }
}
@media screen and (max-width: 600px) {
    .video-container iframe {
        width: 100%; /* Adjust the width as needed */
    }
}

.video-container {
    border: 1px none #fff;
    border-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-container video {
    opacity: 0.5; /* Set a darker opacity */
    transition: opacity 0.3s ease; /* Smooth transition when playing */
}

.video-container video:not(.playing) {
    opacity: 0.1; /* Very low opacity when not playing */
}
.videos-box {
    margin-top: 130px; 
}


        /* Style the video title */
.video-title {
    font-size: 18px; /* Increase font size for a modern look */
    margin-top: 10px; /* Add margin on top */
    color: rgba(200, 200, 200, 0.9); /* Set the text color */
}