/* General del body */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom right, blue, purple);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Estilos para el título */
/* Estilos para el título */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    color: #00b5e2;
    margin: 80px 0 20px;
    letter-spacing: 4px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out; /* Transición para efectos */
}

/* Efecto hover del título */
h1:hover {
    color: #d34b74; /* Cambia el color */
    transform: scale(1.05); /* Efecto de aumento */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6); /* Mayor sombra */
}

/* Contenedor de redes sociales */
.social-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
}

/* Cajas individuales */
.social-box {
    background-color: #333;
    width: 250px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-box:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
}

/* Logo dentro de la caja */
.social-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Texto del nombre */
.social-name {
    font-size: 24px;
    font-weight: bold;
    color: #00b5e2;
    text-align: center;
    margin-bottom: 10px;
}

/* Enlace */
.social-link {
    font-size: 16px;
    color: white;
    text-decoration: none;
    background-color: #00b5e2;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.social-link:hover {
    background-color: #008bb2;
    transform: scale(1.1);
}
