body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    background-color: #f0f0f0; /* Color de fondo opcional */
}

.maintenance-container {
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    box-sizing: border-box;
    text-align: center;
    background-color: #fff; /* Color de fondo del contenedor */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Sombra del contenedor */
}

.maintenance-container img {
    width: 90%;
    max-width: 360px;
    height: min-content;
}

h1 {
    font-size: 26px;
    margin: 10px 0 20px;
    color: #085cc7;
}
p {
    font-size: 16px;
    margin: 10px 0;
    padding: 10px 14px;
    background-color: #98c1f7;
    border-radius: 14px;
}
.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 100%;
    margin-top: 30px;
}
  
.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #98c1f7;
    animation: pulse 1.5s infinite ease-in-out;
}
  
.dot:last-child {
    margin-right: 0;
}
  
.dot:nth-child(1) {
    animation-delay: -0.3s;
}
  
.dot:nth-child(2) {
    animation-delay: -0.1s;
}
  
.dot:nth-child(3) {
    animation-delay: 0.1s;
}
  
@keyframes pulse {
    0% {
      transform: scale(0.8);
      background-color: #b3d4fc;
      box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
  
    50% {
      transform: scale(1.2);
      background-color: #6793fb;
      box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }
  
    100% {
      transform: scale(0.8);
      background-color: #b3d4fc;
      box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}