body {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    font-family: "Arial", sans-serif;
}

.logo {
    text-align: center;
    margin-top: 100px;
}

.logo img {
    max-width: 400px;
    height: auto;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.construction {
    text-align: center;
    margin-top: 30px;
    font-size: 45px;
    color: #927871;
    font-weight: bold;
}

p {
    text-align: center;
    margin-top: 30px;
    font-size: 25px;
    color: #FF9830;
}
