body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.truck {
  position: relative;
  width: 250px;
  margin: 0 auto 2rem;
}

.truck-body {
  display: flex;
  align-items: center;
}

.cabin {
  width: 70px;
  height: 60px;
  background: #0056b3;
  border-radius: 5px;
  position: relative;
}

.cabin::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background: #ffffff;
  top: 10px;
  left: 15px;
  border-radius: 3px;
}

.trailer {
  width: 150px;
  height: 60px;
  background: #007BFF;
  border-radius: 5px;
  margin-left: 10px;
}

.wheel {
  position: absolute;
  bottom: -20px;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  border: 2px solid #222;
  animation: spin-reverse 1.5s linear infinite;
}

.wheel::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.wheel-front {
  left: 50px;
}

.wheel-front::before {
  top: 6px; /* Точка ближе к центру */
  left: 17px;
}

.wheel-back {
  left: 170px;
}

.wheel-back::before {
  bottom: 6px; /* Точка ближе к центру */
  left: 17px;
}

@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.footer {
  font-size: 1rem;
  margin-top: 2rem;
  color: #e0e0e0;
}
