.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 2s ease-in-out;
}

.splash-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 80%;
}

.splash-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.splash-content p {
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
} 