

.avatar {
  background-color: white;
  border-radius: 50%;
}

.image {
  position: relative;
}

.wrapper {
  width: 260px;
  overflow: hidden;
}

main {
  overflow: hidden;
}

h1 {
  font-size: 200px;
  display: flex;
  justify-content: center;
  font-family: "Open Sans", sans-serif;

}

.title {
  animation: move 5s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
  margin-bottom: -140px;
  z-index: 2;
}

@keyframes move {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(50%);
  }

}
@keyframes movedown {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  50% {
    transform: translate3d(0, 20px, 0);
    opacity: 0.5;
    color: #ffb3b3;
  }
  100% {
    transform: translate3d(0, 0px, 0);
    opacity: 0.5;
    color: #ffb3b3;
  }

}

.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url("https://ulpaulpa.de/background.svg")
}
