/* Reset de márgenes y paddings para evitar inconsistencias entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fuente general */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Fondo suave */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Estilos del contenedor principal */
.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 40px;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1.2s ease-in-out;
}

/* Animación suave de aparición */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos del ícono con rotación */
.maintenance-icon img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    animation: rotate 3s linear infinite; /* Animación de rotación */
}

/* Definir la animación de rotación */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Estilo del título */
h1 {
    font-size: 2em;
    color: #007bff; /* Color azul moderno */
    margin-bottom: 10px;
}

/* Estilo del párrafo */
p {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* Responsividad para pantallas medianas (tablets) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
   
