body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('background.jpeg'); /* Reemplaza con la URL de tu imagen */
    background-size: auto; /* Mantener el tamaño original de la imagen */
    background-position: center; /* Centrar la imagen, aunque se repita */
    background-repeat: repeat; /* Repetir la imagen para cubrir el fondo */
    color: #fff; /* Color del texto para que contraste con la imagen */
    text-align: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente para mejor legibilidad */
    padding: 40px;
    border-radius: 10px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
    transition: transform 0.2s ease-in-out;
}

.contact-button:hover {
    transform: scale(1.05);
}

.contact-button i {
    margin-right: 10px;
}

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

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ffb644 45%, #fc4a80 60%, #a42cbe 90%);
}
