body{
  background: none;
  min-height: 200vh;
}

.container {
  position: absolute;
  padding-top: 80vh;
  width: 100%;
  text-align: center;
}

.eyes {
  padding-bottom: 100vh;
}


/* Bildschirm
=========================================================== */
.screen {
  position: fixed;
  width: 100%;
  height: 100%;
  border: solid 25px black; 
}

.ameisenrennen {
  position: fixed;
  width: 100%;
  height: 100%;
  border: solid 25px black; 
  background-image: url("../img/a-3.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


/* Eye
=========================================================== */
.eye {
  width: 25vw;
  height: 25vh;
  background: #fff;
  border: solid 3px black;
  display: inline-block;
  margin: 40px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.eye-1 {
  width: 25vw;
  height: 25vh;
  background: #fff;
  border: solid 3px black;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
    opacity: 0;

  transition: 1s;
}


/* Ball
=========================================================== */
.ball {
  z-index: 0;
  width: 27vh;
  height: 27vh;
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}


/* Text
=========================================================== */
h1 {
	font-family: monospace;
  font-weight: bold;
	font-size: 5vw;
	color: red;
	position: relative;
	padding-top: 2vh;
	padding-bottom: 10vh;
}

span {
  z-index: 1;
	font-family: monospace;
	font-size: 12vw;
	color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;

  animation: mymove 5s linear infinite alternate;
}

@keyframes mymove {
  25% {
    top: 50px;
    left: 400px;
  }
  50% {
    top: 20px;
    left: 20px;
  }
  75% {
    bottom: 10px;
    left: 400px;
  }
  100% {
    bottom: 10px;
    left: -50px;
  }
}


/* Scroll
=========================================================== */