body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f0f0f0;
  margin: 0;
  padding: 20px;
}
.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 800px;
}
h1 {
  color: #333;
  margin: 10px;
}
p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin: 0;
}
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #0056b3;
}

.options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin: 0 10px 0 10px;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-icon {
  width: 25px; /* Ajusta el tamaño del ícono si es necesario */
  height: 25px;
  background-image: url("images/whatsapp-icon.svg"); /* Ruta al archivo SVG local */
  background-size: cover;
  display: inline-block;
  margin-right: 5px; /* Espacio entre el ícono y el texto */
}
.whatsapp-button:hover {
  background-color: #128c7e;
}

.logo {
  width: 50%;
}
.sin_internet {
  width: 40%;
  margin: 0;
}

/* Estilos responsivos */
@media only screen and (max-width: 700px) {
  body {
    padding: 10px;
  }
  .container {
    padding: 10px;
  }
  h1 {
    line-height: 1;
  }
  p {
    line-height: 1;
  }
  .logo {
    width: 100%;
  }
  .sin_internet {
    width: 100%;
  }
  .whatsapp-button {
    margin: 10px;
  }
}

/* Estilos para el pie de página */
footer {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

footer a {
  text-decoration: none;
}

.datetime {
  font-size: 12px;
  color: #999;
}
