/* Return -ASE */

body {
  background-color: #040000;
  color: #fff;
  font-family: 'Courier New', monospace;
  text-align: center;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
}

a {
  color: white;
}

img {
  animation: glide 3s;
  animation-iteration-count: infinite;
}



@keyframes glide {
  0% { transform: translate(0px, 0px) rotate(0deg); }
  50% { transform: translate(0px, 2.5px) rotate(0.5deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}
