body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAB600 !important;
}

.container {
    display: flex;
    flex-direction: column; /* Alinea los elementos en columna (logo arriba, texto abajo) */
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
}

.logo {
    max-width: 50%;
    height: auto;
    display: block;
}

.texto-construccion {
    margin-top: 50px; /* Espacio de 30px entre el logo y el texto */
    font-size: 24px;
    font-family: 'Poppins', sans-serif; /* Cambia la fuente a Poppins */
    color: #000;
    font-weight: bold;
    text-align: center; /* Centra el texto horizontalmente */
}