@import url("https://fonts.googleapis.com/css?family=Rubik+Puddles&display=swap&effect=fire-animation|3d-float");
h1 {
  font-size: 4rem;
  text-align: center;
}

.vertical-scrolling-text {
  height: 60px;
  overflow: hidden;
  position: relative;
  width: 200px;
}

.vertical-scrolling-text p {
  font-size: 2rem;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  white-space: nowrap;
  /* Starting position */
  transform: translateX(100%);
  /* Apply animation to this element */
  animation: verticalScrollText 10s linear infinite;
}

@keyframes verticalScrollText {
  0% {
    /* Firefox bug fix */
    /* Firefox bug fix */
    transform: translateX(100%);
  }
  100% {
    /* Firefox bug fix */
    /* Firefox bug fix */
    transform: translateX(-100%);
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  font-family: "Rubik Puddles", cursive;
}

section {
  padding: 1px;
}

section.rick {
  background-color: #3a083a;
  height: 100%;
  min-height: 700px;
  position: relative;
}

section.rick h2 {
  font-size: 5rem;
  margin-left: 10%;
  margin-top: 5%;
  color: yellow;
}

section.rick h3 {
  font-size: 4rem;
  margin-left: 3%;
  margin-top: 1%;
  color: deeppink;
}

section.rick .rick-gif {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}

section.rick .rick-gif iframe {
  pointer-events: none;
}

header {
  background-color: blue;
  padding: 2rem 1rem;
}

header .vertical-scrolling-text {
  color: yellow;
}
/*# sourceMappingURL=stuhlian.css.map */