body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    color: white;
}

.container img {
    width: 400px; /* Ancho deseado */
    max-width: 100%; /* Para que sea responsiva en pantallas más pequeñas */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.aviso-construccion {
    font-size: 0.9em;
    color: white;
    margin-bottom: 25px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}