/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background: white;
    min-height: 100vh;
}

/* Logo styling */
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: logoFade 2s ease-in forwards, logoFadeOut 1s ease-in forwards;
    animation-delay: 0s, 3s;
}

.logo-container img {
    max-width: 800px;
    width: 90%;
    height: auto;
    display: block;
    border-radius: 10px;
    
}





/* Responsive design */
@media (max-width: 768px) {
    .text-container h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .text-container h1 {
        font-size: 1.8rem;
    }
}

/* Keyframes */
@keyframes logoFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

@keyframes showText {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}