body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video {
    margin-bottom: 1.5rem;
}

.video iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
}

.video-title {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem;
    color: #333;
    text-align: center;
}

footer {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #1e90ff;
    text-decoration: none;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
    }
    
}