body {
    font-family: Arial, sans-serif;
    background-color: #2c3e50;
    /* Color de fondo oscuro */
    color: #ecf0f1;
    /* Color de texto claro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    padding: 40px;
    background-color: #34495e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.maintenance-icon {
    font-size: 80px;
    color: #f1c40f;
    /* Color amarillo para el ícono */
    animation: spin 3s linear infinite;
    /* Animación de giro */
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
}

.contact-info {
    margin-top: 20px;
    font-size: 1em;
    opacity: 0.8;
}