body {
    background-color: #0099ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    color: white;
    text-align: center;
}

#upper-construction-icons {
    position: absolute;
    top: 50px;
    right: -1050px;
    display: flex;
    animation: moveUpperIcons 10s linear infinite;
}


#bottom-construction-icons {
    position: absolute;
    bottom: 50px;
    left: -950px;
    display: flex;
    animation: moveBottomIcons 10s linear infinite;
}

.UpperIcon {
    width: 70px;
    height: 70px;
    margin-right: 100px;
}

.BottomIcon {
    transform: scaleX(-1);
    width: 70px;
    height: 70px;
    margin-right: 100px;
}

@keyframes moveUpperIcons {
    from { transform: translateX(0); } 
    to { transform: translateX(calc(-100vw - 1050px)); } 
}

@keyframes moveBottomIcons {
    from { transform: translateX(0); }
    to { transform: translateX(calc(100vw + 950px)); }
}



