.backgroundcolor {
    background-color: darkblue;
}

.newCursor {
    cursor: url('https://piskel-imgstore-b.appspot.com/img/8e889e23-c8c7-11ec-a987-2909627efbaf.gif'), auto;
}

@keyframes truckAnimation {
    0% {bottom: 0px; right: -20%;}
    100% {bottom: 0px; right: 120%;}
}

.truck {
    width: 313px;
    height: 200px;
    position: fixed;
    animation-name: truckAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes welcomeAnimation {
    0% {color: red;}
    25% {color: darkgreen;}
    50% {color: cyan;}
    75% {color: purple;}
    100% {color: darkgoldenrod;}
}

.welcome {
    text-align: center;
}

.welcome:hover {
    font-size: 50px;
    top: 0px;
    color: darkgoldenrod;
    animation-name: welcomeAnimation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

#box1 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 200px;
    right: 400px;
    background-color: green;
    font-size: 25px;
}
#box2 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 200px;
    right: 290px;
    background-color: green;
    font-size: 25px;
}
#box3 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 200px;
    right: 180px;
    background-color: green;
    font-size: 25px;
}
#box4 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 310px;
    right: 400px;
    background-color: green;
    font-size: 25px;
}
#box5 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 310px;
    right: 290px;
    background-color: green;
    font-size: 25px;
}
#box6 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 310px;
    right: 180px;
    background-color: green;
    font-size: 25px;
}
#box7 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 420px;
    right: 400px;
    background-color: green;
    font-size: 25px;
}
#box8 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 420px;
    right: 290px;
    background-color: green;
    font-size: 25px;
}
#box9 {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 420px;
    right: 180px;
    background-color: green;
    font-size: 25px;
}