/* body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
} */

.work-in-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #e74c3c;
    text-align: center;
    animation: bounce 1s infinite alternate;
    padding:25% !important;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}