* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
    color: #505050;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
}


/* Logo gigante con movimiento */
.logo {
    max-width: 520px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

i{
 color: rgb(18, 214, 214);
}




/* Animación suave */
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contactos */
.contacto {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contacto a {
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.contacto a:hover {
    opacity: 0.6;
}

.contacto i {
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        max-width: 320px;
    }

    h1 {
        font-size: 1.8rem;
    }
}