* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: #f1f1f1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.container {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #1e1e1e;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    animation: slideDown 0.8s ease-out;
}

.socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.socials a {
    font-size: 1.8rem;
    color: #f1f1f1;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
}

.socials a:hover {
    color: #1da1f2;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
