/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

/* Under Construction Symbol */
.symbol {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

/* Text Styles */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #666;
}