/* style.css */
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; 
    font-family: Arial, sans-serif;
    background-image: url('e9490ad8-1a40-48e7-90b1-0c26116c95c2.jpg'); 
    background-size: cover; 
    background-position: center; 
}

.container {
    text-align: center;
    width: 80%; 
    max-width: 1200px; 
    animation: fadeIn 2s ease-out;
}

.logo {
    width: 60%; 
    max-width: 70%; 
    height: auto; 
    margin: 0 auto; 
}

.text {
    color: #021d89; 
    font-size: 500%; 
    margin-top: 20px; 
    padding: 10px; 
    display: inline-block; 
    text-shadow: 2px 2px 4px #320e94; 
}



/* Simple fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
