body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #3c8035; /* Fondo verde */
}

a{
    text-decoration: none;
}

.construction-container {
    text-align: center;
}

.construction-text {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.construction-animation {
    margin-top: 20px;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}
