* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.construction-site {
    height: 250px;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

/* Clouds */
.clouds {
    position: absolute;
    width: 100%;
    height: 60px;
    top: 10px;
    z-index: -2;
}

.cloud {
    position: absolute;
    background-color: #fff;
    border-radius: 20px;
    opacity: 0.8;
}

.cloud-1 {
    width: 80px;
    height: 30px;
    top: 10px;
    left: 20px;
    animation: cloud-move-1 30s linear infinite;
}

.cloud-1::before,
.cloud-1::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.cloud-1::before {
    width: 35px;
    height: 35px;
    top: -15px;
    left: 10px;
}

.cloud-1::after {
    width: 25px;
    height: 25px;
    top: -10px;
    left: 40px;
}

.cloud-2 {
    width: 100px;
    height: 35px;
    top: 30px;
    right: 40px;
    animation: cloud-move-2 40s linear infinite;
}

.cloud-2::before,
.cloud-2::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-2::after {
    width: 30px;
    height: 30px;
    top: -12px;
    left: 50px;
}

@keyframes cloud-move-1 {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes cloud-move-2 {
    0% { transform: translateX(calc(100vw + 100px)); }
    100% { transform: translateX(-150px); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
} 