body {
  font-family: "Museo 700", sans-serif;
  background-image: url('fondo.jpg'); /* Ruta de la imagen de fondo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente para el contenido */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 100px;
  /*height: 100px;*/
}

.under-construction {
  font-size: 36px;
  font-weight: bold;
  color: #9c0e1c; /* Color principal */
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #000; /* Color de texto */
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-item {
  font-size: 20px;
  color: #000; /* Color de texto */
  margin-bottom: 10px;
}

a {
  display: inline-block;
  padding: 12px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  background-color: #9c0e1c; /* Color principal */
  color: #fff;
}
