body {
  font-family: Arial, sans-serif;
  background-image: url('construccion.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Para mantener el fondo en su lugar al hacer scroll */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.maintenance-container {
  text-align: center;
  background-color: rgba(255, 234, 7, 0);
  width: 400px;
  border-radius: 10px;
  
}

.logo {
  max-width: 100px;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
}

p {
  font-size: 18px;
  color: #000000;
}

@media (max-width: 768px) {
  body {
    background-position: top;
    background-image: url('construccion.jpg');
  }

  .maintenance-container {
    max-width: 80%;
    padding-bottom: 300px;
    
  }

  h1 {
    font-size: 30px;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
  }

  p {
    font-size: 16px;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
