/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    animation: logoAnimation 4s ease-in-out;
}

@keyframes logoAnimation {
    0% {
        transform: translateX(-100px) scale(0.8);
        opacity: 0;
    }
    25% {
        transform: translateX(-50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateX(0) scale(1.5);
    }
    75% {
        transform: translateX(50px) scale(1.2);
    }
    100% {
        transform: translateX(0) scale(2);
    }
}

h1 {
    font-size: 1rem;
    font-weight: bold;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: textAnimation 2s ease-in-out 1s both;
}

@keyframes textAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}