body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1 {
    color: #c3cec1;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.construction-wrapper {
    text-align: center;
}

.construction-wrapper img {
    max-width: 45%;
}

.construction-wrapper h1 {
    font-size: 36px;
    margin: 20px 0;
}

.construction-wrapper p {
    font-size: 18px;
    color: #a87904;
    margin-bottom: 30px;
}

/* Add a media query for mobile devices */
@media (max-width: 768px) {
    .construction-wrapper img {
        max-width: 90%; /* Resize the logo to 90% on mobile */
    }
}

.construction-wrapper h1 {
    font-size: 36px;
    margin: 20px 0;
}

.construction-wrapper p {
    font-size: 18px;
    color: #a87904;
    margin-bottom: 30px;
}

/* Add a fun animation for the logo */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.construction-wrapper img {
    animation: bounce 2s infinite;
}
