* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p {
  padding-bottom: 0.714em !important;
  padding-top: 0.714em !important;
  text-transform: uppercase;
  letter-spacing: 0px;
  display: block;
  margin: auto;
  font-weight: 400;
  color: #fff;
  font-weight: bold;
  text-align: center;
  white-space: nowrap !important;
}

body {
  background: #FFC837;
  height: 100%;
  width: 100%;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.main {
  overflow: hidden;
  font-size: 100px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.main h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main p {
  font-size: 50px;
}
.main .style {
  opacity: 1;
  margin-left: -50px;
  margin-right: -50px;
  -webkit-animation: glow 3s cubic-bezier(1, -0.03, 0, 1.85) infinite;
          animation: glow 3s cubic-bezier(1, -0.03, 0, 1.85) infinite;
}

.blink {
  width: 0;
  line-height: 0;
  border-right: solid 2px rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.blink p {
  color: white;
}

.typing {
  -webkit-animation: type 3s steps(80) 1s normal both, blink 500ms steps(40) 25 forwards;
          animation: type 3s steps(80) 1s normal both, blink 500ms steps(40) 25 forwards;
}

@-webkit-keyframes type {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes type {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes blink {
  0% {
    border-right-color: rgba(255, 255, 255, 0.7);
  }
  100% {
    border-right-color: transparent;
  }
}
@keyframes blink {
  0% {
    border-right-color: rgba(255, 255, 255, 0.7);
  }
  100% {
    border-right-color: transparent;
  }
}
@-webkit-keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}