body {
    font-family: sans-serif;
    margin: 0;
    background-color: #e562ff;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

header {
    background-color: #ff9800; /* Un naranja alegre */
    color: white;
    padding: 20px 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

.descripcion {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    max-width: 520px;
}

.descripcion p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.botones {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.boton {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 700px; /* Ancho fijo para los botones */
    max-width: 100%; /* Para que no se desborden en pantallas pequeñas */
}

.boton.tiktok {
    background-color: #1877f2;
}

.boton.instagram {
    background-color: #c13584;
}

.boton.youtube {
    background-color: #ff0000;
}

.boton.whatsapp {
    background-color: #25d366;
}

.boton.spotify {
    background-color: #1d20b9;
}

.boton:hover {
    opacity: 0.9;
}

footer {
    text-align: center;
    color: #ffffff;
    font-size: 0.9em;
    margin-top: 30px;
}
