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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 0;
    background: linear-gradient(90deg, #87CEEB, #FFB6C1, #87CEEB, #FFB6C1, #87CEEB);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-text-animation 5s linear infinite;
}

@keyframes rainbow-text-animation {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}





.subtitle {
    font-size: 1.8rem;
    font-weight: normal;
    color: #ccc;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.rotating-word {
    display: inline-block;
    transition: opacity 0.3s ease;
}



/* Responsive design */
@media (max-width: 768px) {
    .content {
        gap: 0.3rem;
    }
    
    .title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
} 