body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}
.title {
    font-size: 4em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.subtitle {
    font-size: 2em;
    margin-top: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title {
    animation: fadeIn 2s ease-in-out;
}
.subtitle {
    animation: slideUp 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.9; }
}
