/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

/* Contenedor principal */
.container {
    text-align: center;
}

/* Caja de contenido */
.construction-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo del encabezado */
.construction-box h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

/* Estilo del párrafo */
.construction-box p {
    font-size: 18px;
    color: #555;
}

/* Estilo para móviles */
@media (max-width: 600px) {
    .construction-box h1 {
        font-size: 28px;
    }

    .construction-box p {
        font-size: 16px;
    }
}
