@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Lato:100,200,300,400);
@font-face {
  font-family: Florisa;
  src: url(Florisa.otf);
}
@font-face {
  font-family: StenciLove;
  src: url(Stencilove.ttf);
}
*, body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #1c1c1c;
}

.wrap {
  height: 100px;
  margin-bottom: 100px;
}

.box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 85%;
  height: 85%;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/smoke_texture2714-min.jpg") center center no-repeat;
  background-size: cover;
  box-shadow: 0 3rem 5rem -2rem rgba(0, 0, 0, 0.8);
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
  opacity: 80%;
}
.box .smoke {
  position: absolute;
  top: -10%;
  left: -10%;
  transform: translate3d(0, 0, 0) rotate(0.01deg);
  width: 120%;
  height: 120%;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/smoke-min.png") center center no-repeat;
  background-size: cover;
  z-index: -10;
  opacity: 0.5;
  animation: smokebg 60s infinite alternate;
}

.text {
  position: fixed;
  inset: 0px;
  width: 100rem;
  height: 40rem;
  max-width: 100vw;
  max-height: 100dvh;
  margin: auto;
  background: transparent;
  z-index: 10;
}

strong, a{
  background: transparent;
  font-weight: 800;
}

a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

#first {
  background: transparent;
  color: white;
  z-index: 2;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  font-family: Florisa;
  font-size: 43pt;
  text-align: center;
}

#second {
  background: transparent;
  color: white;
  z-index: 2;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  font-family: StenciLove;
  font-size: 13pt;
  text-align: center;
}

#third {
  background: transparent;
  color: white;
  z-index: 2;
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  font-family: StenciLove;
  font-size: 12pt;
  text-align: center;
}

@keyframes smokebg {
  25% {
    transform: translate3d(100px, 0, 0) rotate(0.01deg);
  }
  50% {
    transform: translate3d(75px, -25px, 0) rotate(0.01deg);
  }
  75% {
    transform: translate3d(45px, 30px, 0) rotate(0.01deg);
  }
  100% {
    transform: translate3d(25px, -15px, 0) rotate(0.01deg);
  }
}


