body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a:hover {
    color: #006ea5;
    text-decoration: none;
}
a{
    text-decoration: none;
    color: #00aaff;
    font-size: large;
}
.construction-container {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0;
}

.animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 20px auto;
}

.crane, .building {
    position: absolute;
    bottom: 0;
}

.crane {
    width: 50px;
    height: 200px;
    background: #ffcc00;
    left: 50%;
    transform: translateX(-50%);
    animation: crane-move 2s infinite alternate;
}

.building {
    width: 100px;
    height: 100px;
    background: #00aaff;
    left: 50%;
    transform: translateX(-50%);
    animation: building-grow 2s infinite alternate;
}

@keyframes crane-move {
    0% { left: calc(50% - 25px); }
    100% { left: calc(50% + 25px); }
}

@keyframes building-grow {
    0% { height: 100px; }
    100% { height: 150px; }
}
