*,
*:after,
*:before {
  box-sizing: border-box;
}
:root {
  --bg: #04050d;
  --glow: rgba(245,224,163,0.5);
  --sparkler-top: #4f4139;
  --sparkler-bottom: #333;
  --spark: #fff;
}
body {
  min-height: 100vh;
  background: var(--bg);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  overflow: hidden;
}
span {
  position: absolute;
  border: 2px solid #008000;
  border-radius: 100%;
  opacity: 0.1;
  width: calc((100 / 3) * 1vw);
  height: 50vh;
  z-index: 3;
}
.sparkler {
  position: absolute;
  border-radius: 100%;
  left: 608px;
  top: 440px;
  box-shadow: 0 0 60px 60px var(--glow);
}
.sparkler__spark {
  --shadow: hsl(var(--h), calc(var(--s, 100) * 1%), calc(var(--l, 50) * 1%));
  height: 8px;
  position: absolute;
  width: 8px;
  box-shadow: 0 0 20px 4px var(--shadow);
  background: var(--spark);
  border-radius: 100%;
  transform: rotate(calc(var(--rotation) * 1deg)) translate(0, 0);
  -webkit-animation: spark calc(var(--speed) * 1s) calc(var(--delay) * -1s) infinite ease;
          animation: spark calc(var(--speed) * 1s) calc(var(--delay) * -1s) infinite ease;
  z-index: 2;
}
@-webkit-keyframes spark {
  to {
    opacity: 0;
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--travel) * 1px));
  }
}
@keyframes spark {
  to {
    opacity: 0;
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--travel) * 1px));
  }
}

.container {
	width: 100%;
	height: 1000px;
	background-color : #5B5B4F;
	/*background-image :*/
	/*	radial-gradient(#5b9400 20px, transparent 22px),*/
	/*	radial-gradient(#a0f8d2 20px, transparent 22px);*/
	background-size : 90px 90px;
	background-position: 0 0, 45px 45px;
	position: relative;
}

.slidewrapper {
    position: relative;
}

#slide {
    position: absolute;
    right: -1000px;
    background: rgba(0,0,0,0);
    -webkit-animation-timing-function: ease-in;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-timing-function: ease-in;
    -moz-animation: slide 0.5s forwards;
    -moz-animation-delay: 2s;
    animation-timing-function: ease-in;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

#slide1 {
    position: absolute;
    right: -1000px;
    background: rgba(0,0,0,0);
    -webkit-animation-timing-function: ease-in;
    -webkit-animation: slide1 0.5s forwards;
    -webkit-animation-delay: 2.1s;
    -moz-animation-timing-function: ease-in;
    -moz-animation: slide1 0.5s forwards;
    -moz-animation-delay: 2.1s;
    animation-timing-function: ease-in;
    animation: slide1 0.5s forwards;
    animation-delay: 2.1s;
}

#slide2 {
    position: absolute;
    right: -1000px;
    background: rgba(0,0,0,0);
    -webkit-animation-timing-function: ease-in;
    -webkit-animation: slide2 0.5s forwards;
    -webkit-animation-delay: 2.2s;
    -moz-animation-timing-function: ease-in;
    -moz-animation: slide2 0.5s forwards;
    -moz-animation-delay: 2.2s;
    animation-timing-function: ease-in;
    animation: slide2 0.5s forwards;
    animation-delay: 2.2s;
}
#slide3 {
    position: absolute;
    right: -1000px;
    background: rgba(0,0,0,0);
    -webkit-animation-timing-function: ease-in;
    -webkit-animation: slide3 0.5s forwards;
    -webkit-animation-delay: 2.3s;
    -moz-animation-timing-function: ease-in;
    -moz-animation: slide3 0.5s forwards;
    -moz-animation-delay: 2.3s;
    animation-timing-function: ease-in;
    animation: slide3 0.5s forwards;
    animation-delay: 2.3s;
}

@-webkit-keyframes slide {
    100% { right: 0; }
}

@keyframes slide {
    100% { right: 0; }
}

@-webkit-keyframes slide1 {
    100% { right: -30px; }
}

@keyframes slide1 {
    100% { right: -30px; }
}

@-webkit-keyframes slide2 {
    100% { right: -50px; }
    100% { top: 7px; }
}

@keyframes slide2 {
    100% { right: -50px; }
    100% { top: 7px; }
}

@-webkit-keyframes slide3 {
    100% { right: -60px; }
    100% { top: 10px; }
}

@keyframes slide3 {
    100% { right: -60px; }
    100% { top: 10px; }
}

.fade-in-image {
  right: 0;
  position: absolute;
  animation: fadeIn 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: backwards;
  -webkit-animation: fadeIn 0s;
  -webkit-animation-delay: 0s;
  animation-fill-mode: backwards;
  -moz-animation: fadeIn 0s;
  -moz-animation-delay: 0s;
  -moz-animation-fill-mode: backwards;
}

.fade-in-textbox {
  right: 0;
  position: absolute;
  animation: fadeIn 0.25s;
  animation-delay: 8.9s;
  -webkit-animation-fill-mode: backwards;
  -webkit-animation: fadeIn 0.15s;
  -webkit-animation-delay: 8.9s;
  animation-fill-mode: backwards;
  -moz-animation: fadeIn 0.5s;
  -moz-animation-delay: 8.9s;
  -moz-animation-fill-mode: backwards;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.text-box {
  right: 0;
  position: absolute;
}

.text-title {
    float: left;
    top: 0px;
    left: 0%;
    position: relative;
    font-size: 48px;
    color: #FCEED9;
    font-family: 'Carter One', cursive;
}

.text-body {
    float: left;
    top: 270px;
    left: 50%;
    position: relative;
    font-size: 16px;
    color: #29242A;
    font-family: 'EB Garamond', serif;
    width:280px;
    word-wrap:break-word;
}
