




body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sponsers{
    font-size: small;
}

.intro-page {
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.skip-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.skip-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.welcome-message {
    text-align: center;
}

.college-name {
    font-size: 1.5rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s forwards 1s;
}

.event-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tech, .guru {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ff9f43;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    opacity: 0;
}

.tech {
    animation: slideInFromRight 1.5s ease-out forwards 3s;
}

.guru {
    animation: slideInFromLeft 1.5s ease-out forwards 3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-icons .icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: float 6s infinite ease-in-out;
}

.floating-icons .icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icons .icon:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
}

.floating-icons .icon:nth-child(3) {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.floating-icons .icon:nth-child(4) {
    top: 70%;
    left: 90%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .college-name {
        font-size: 1.2rem;
    }

    .tech, .guru {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .event-name {
        flex-direction: column;
        gap: 0.5rem;
    }

    .floating-icons .icon {
        font-size: 1.5rem;
    }

    .skip-button {
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}






.skip-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure the button is above other elements */
}

.skip-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}