body{
  position: relative;
  height: 100vh;
  margin: auto;
}

.logo_block{
  position: absolute;
  width: 943px;
  height: 937px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.truck_block{
  width: 100%;
  position: absolute;
  transform-origin:0% 50%;
  animation:truck 5s 1;
  margin: auto;
  top: 500px;
}

@keyframes truck{
  0% {
    transform: translateX(-150%);
  }
  to {
    transform: translateX(150%);
  }
}




footer{
  position: fixed;
  width: 100%;
  bottom: 0;
  color: #000;
  text-align: center;
  padding: 5px;
  font-size: 1.6rem;
  background: #eee;
}

ul li{
  list-style: none;
}