* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
}

.splash-content {
    text-align: center;
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0;
}

.splash-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.splash-content p {
    font-size: 1.5rem;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
