/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
}

a {
  color: black;
  text-decoration: none;
}




/*
  STYLES
*/

@font-face {
  font-family: "squatina";
  src: 
  url("../fonts/Squatina-Regular.otf") format("otf"),
  url("../fonts/Squatina-Regular.woff") format("woff"),
  url("../fonts/Squatina-Regular.woff2") format("woff2");
}

body {
  font-family: "squatina";
  background-color: #500056;
}

p {
  color: #FF004D;
}

.titel {
  font-size: 15vw;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  animation: pingpong 14s linear infinite;
  z-index: 1;
}


.johanna {
  font-size: 21vw;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  animation: pingpong2 14s linear infinite;
  z-index: 1;
}


@keyframes pingpong {
  0% {
    /* top: 50% vh; */
    left: 100%;
  }

  100% {
    /* top: 50% vh; */
    left: -100%;
  }
}


@keyframes pingpong2 {
  0% {
    /* top: 50% vh; */
    left: -100%;
  }

  100% {
    /* top: 50% vh; */
    left: 100%;
  }
}