* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, #f7f8f9, #e2e3e5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.header h1 {
    font-size: 2.5rem;
    color: #ff6a00;
}

.header p {
    color: #666;
    margin-top: 10px;
    font-size: 1.2rem;
}

.construction-zone {
    margin-top: 20px;
}

.construction-message {
    margin-bottom: 20px;
}

.construction-message p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.construction-icon {
    width: 60px;
    height: 60px;
}

.animated-scene {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 20px;
}

.crane, .barrier, .worker, .truck {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #ff6a00;
    border: 2px solid #333;
    border-radius: 10px;
    animation: bounce 2s infinite;
}

.crane {
    background-image: url('https://img.icons8.com/emoji/48/000000/crane-emoji.png');
    background-size: cover;
}

.barrier {
    background-image: url('https://img.icons8.com/emoji/48/000000/barrier-emoji.png');
    background-size: cover;
}

.worker {
    background-image: url('https://img.icons8.com/emoji/48/000000/construction-worker-emoji.png');
    background-size: cover;
}

.truck {
    background-image: url('https://img.icons8.com/emoji/48/000000/delivery-truck-emoji.png');
    background-size: cover;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.info {
    margin-top: 30px;
}

.contact {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.contact-item {
    text-align: center;
}

.facebook-link {
    text-decoration: none;
    color: #3b5998;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.facebook-link i {
    margin-right: 10px;
}

.phone {
    font-size: 1.2rem;
    color: #333;
}

.facebook-link:hover {
    color: #1d3f72;
}
