body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #eee;
    color: #000;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 0 20px;
    animation: fadeIn 2s ease-in-out;
}

.logo {
    width: 100%;
    max-width: 450px;
    animation: slideDown 1.5s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    animation: fadeInUp 2s ease-in-out;
}

p {
    font-size: 1.2rem;
    animation: fadeInUp 2.5s ease-in-out;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
