* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(-45deg, #F2E1C2, #D9BE8F);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
}

.logo {
    width: 450px;
    animation: fadeIn 2s ease-in-out, bounce 1.5s infinite alternate ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-30px); }
}

.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    font-size: 32px;
    color: #4B444B;
    transition: 0.3s;
}

.socials a:hover {
    transform: scale(1.2);
    color: #8C2C16;
}

.instagram { color: #E4405F; }
.email { color: #007BFF; }