body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #013984;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 1em;
    animation: fadeInDown 2s ease-in-out;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    animation: fadeInDown 2s ease-in-out;
}

p {
    font-size: 1em;
    margin-bottom: 1em;
    animation: fadeInUp 2s ease-in-out;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid#013984;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 2em auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
