/* @import url("https://fonts.googleapis.com/css?family=Lobster&display=swap") */
  repeat scroll 0 0 rgba(0, 0, 0, 0);

.management_title {
  font-size: 2.5em!important;
}

.management_wrapper {
  animation: scroll 10s linear infinite;
  background: url("/img/brillopboy/management/managementtitle.png"),
    #111111;
  color: #eee;
  height: 100vh;
  min-width: 360px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  perspective-origin: 50% 50%;
}

@keyframes scroll {
  100% {
    background-position: 0px -400%;
  }
}

/* Fallback if the operatring system prefers reduced motion*/
@media (prefers-reduced-motion) {
  .management_wrapper {
    animation: scroll 800s linear infinite;
  }
}

@media (min-width: 670px) {
  .management_title {
    font-size: 5em!important;
  }
}