@charset "UTF-8";
/* CSS Document */
#teaser {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
}
#teaser_body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #aaa;
    background-image:url("../img/Logo_bild.svg");
    background-size: 30%;
    background-position: center;
    background-repeat: no-repeat;
    
}
.teaser_item {
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: switch;
  animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-duration: 2s;
}
@keyframes switch {
  0% {
    right: 100%;
  }
  100% {
    right: 0%
  }
}