@import 'https://fonts.googleapis.com/css?family=Righteous';

@keyframes shift {
  0% {
    x: 0;
  }

  100% {
    x: -2000;
  }
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #131313;
}

.specialtext {
  position: relative;
  left: 50%;
  margin-top: 25%;
  transform: translate(-50%, -50%);
}

.logo-farm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  position: relative;
  width: 750px;
}

.logo-farm .logo {
  border-radius: 10px;
  width: 100%;
  max-width: 215px;
}

#text {
  font-size: 150px;
  font-family: Righteous;
}

#fill {
  animation: shift 5s linear infinite;
}

#privacypolicy, #support > * {
  color: #ffffff;
}

#privacypolicy a, #support a {
  color: #ffffff;
  text-decoration: underline;
}

#privacypolicy, #support{
  overflow: auto
}

#privacypolicy .specialtext, #support .specialtext {
  position: relative;
  left:0;
  top:0;
  transform: none; 
}

#privacypolicy .jumbotron, #support .jumbotron {
  background-color: transparent;
}

