body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    flex-direction: column;
    background: linear-gradient(100deg, #ff6ec7, #00bfff, #39e75f);
    background-size: 300% 300%;
    animation: bgAnimation 6s infinite alternate;
    padding: 20px;
}

@keyframes bgAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.container {
    max-width: 90vw;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style for SVG Logo */
.logo {
    display: block;
    max-width: 200px;
    margin: 0 auto 20px;
}

/* Responsive Thumbnail */
.thumbnail {
    width: 100%;
    max-width: 560px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Responsive PDF Embed */
.pdf-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.pdf-container embed {
    width: 100%;
    height: 500px;
}

/* Style for the small text above the video */
.video-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}


/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 95vw;
        padding: 15px;
    }

    h1, h2 {
        font-size: 1.5rem;
    }

    .thumbnail {
        max-width: 100%;
    }

    .pdf-container embed {
        height: 400px; /* Adjust PDF height for smaller screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .pdf-container embed {
        height: 300px; /* Smaller PDF display for small devices */
    }
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.member {
    text-align: center;
}
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}