body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    flex-direction: column;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Imagen del logo centrada */
.logo {
    width: 100%; /* Ajusta el tamaño según sea necesario */
    max-width: 100%;
    height: auto;
}

/* Icono de Instagram */
.social-icon img {
    width: 90px; /* Tamaño del icono */
    height: 90px;
    margin-top: 15px; /* Espacio entre el logo e Instagram */
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1); /* Efecto de zoom al pasar el mouse */
}

/* Botón Contacta */
.contact-button {
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 18px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
}
