body {
  position: absolute;
  overflow: hidden;
  top: 0; bottom: 0; left: 0; right: 0;
  padding: 0; margin: 0; border-width: 0;
  background-color: #000;
  color: #fff;
  font-size: 8vh;
  line-height: 8vh;
  text-align: center;
}

span {
  display: block;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  height: 100%; width: 100%;
}

.container div {
  opacity: 0;
  animation-name: logo;
  animation-duration: 6s;

  width: 60vh;
}

#servo {
  animation-duration: 4s;
  animation-delay: 6s;
}

#servo img {
  width: 40vh;
  padding: 0 10vh;
}

#antartica img {
  width: 60vh;
  height: 40vh;
}

#foss {
  opacity: 0;
  animation-name: logo;
  animation-duration: 4s;
  animation-delay: 10s;

  position: absolute;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  height: 100vw !important;
}

#foss img {
  position: absolute;
  top: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  width: 15vw !important;
}

#foss img:first-child {
  left: 30vw !important;
  right: 45vw !important;
}

#foss img:last-child {
  left: 55vw !important;
  right: 70vw !important;
}

/* The animation code */
@keyframes logo {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
