body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.oasis-container {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 20px;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f0e68c; /* Khaki, a warm color */
}

.mensaje {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 100px; /* Ensure space for text */
    display: flex;
    align-items: center;
    justify-content: center;
}

#texto-mensaje {
    font-size: 1.3em;
    line-height: 1.6;
    font-style: italic;
}

button, .donation-button {
    font-family: 'Montserrat', sans-serif;
    background-color: #8FBC8F; /* DarkSeaGreen */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none; /* For anchor styled as button */
    display: inline-block; /* For anchor styled as button */
    margin-top: 10px;
}

button:hover, .donation-button:hover {
    background-color: #70a370; /* Darker green */
    transform: translateY(-2px);
}

button:active, .donation-button:active {
    transform: translateY(0);
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 20px;
}

/* Estilos para los botones de compartir */
.share-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-buttons span {
    margin-right: 10px;
    font-size: 0.9em;
}

.share-buttons button {
    background-color: transparent; /* O un color sutil */
    border: 1px solid #ddd; /* Borde ligero */
    padding: 8px;
    margin: 0 5px;
    border-radius: 50%; /* Para hacerlos redondos si los iconos son cuadrados */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40px; /* Ajusta según el tamaño de tus iconos */
    height: 40px; /* Ajusta según el tamaño de tus iconos */
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-buttons button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Efecto hover sutil */
}

.share-buttons img {
    width: 20px; /* Ajusta el tamaño del icono dentro del botón */
    height: 20px;
    /* Si tus iconos tienen fondo blanco y quieres que se vea bien en fondos oscuros: */
    /* filter: invert(1); */
}