/* ../assets/css/footer.css */

/* ALGEMENE STIJLEN */
body {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  flex-grow: 1;
}

/* SECTIE STIJLEN */
.footer {
  width: 100%;
  padding: none;
  text-align: center;
  overflow: hidden;
  height: 75px;
}

/* TYPOGRAFIE */
footer {
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
}

footer p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.tank-container {
  position: relative;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  animation: tankMove 15s linear infinite;
}

.tank {
  width: 100px;
  height: 50px;
  background-image: url("../images/Tiger_II.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes tankMove {
  0% {
    left: -100px;
    animation-timing-function: steps(
      1,
      end
    );
  }
  10% {
    left: -100px;
  }
  100% {
    left: calc(
      100% + 100px
    );
    animation-timing-function: linear;
  }
}
