@import url(https://fonts.googleapis.com/css?family=Satisfy);
@import url(https://fonts.googleapis.com/css?family=Marcellus);
.content {
  max-width: 600px;
  margin: auto;
}
.content h1 {
  text-align: center;
  font-size: 72px;
  font-family: 'Satisfy', cursive;
}
.content p {
  font-size: 18px;
  font-family: 'Marcellus', serif;
  color: #666;
  text-align: center;
}

.scroll-to-top {
  width: 50px;
  height: 30px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  position: fixed;
  bottom: 0px;
  right: 3px;
  border-top-right-radius: 5px;
  z-index: 9999999999999;
  background-color: #fcb041;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow: hidden;
}
.scroll-to-top:before, .scroll-to-top:after {
  content: '';
  position: absolute;
  display: block;
  top: 7px;
  background-color: #fff;
  height: 16px;
  width: 3px;
}
.scroll-to-top:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 28px;
  box-shadow: -8px 14px 0px 8px #fcb041;
}
.scroll-to-top:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 28px;
}
.scroll-to-top:focus {
  outline: none;
}


