body {
  background: url(../img/darkness.png), #09ffb3;
  background-attachment: fixed;
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

*{
  box-sizing: border-box;
}

.strong{
  font-weight: bold;
}

.header{
  display: none;
}

.above-the-fold{
  background: url(../img/lightness.png), #09ffb3;
  background-attachment: fixed;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}

.above-the-fold h1{
  font-family: 'Anton', sans-serif;
  font-size: 100px;
  text-align: center;
  letter-spacing: 3px;
  color: #020202;
  margin-top: 30vh;
  text-shadow: 0px 5px 10px #6c9d8e;
}

.above-the-fold a{
  text-decoration: none;
   color: #020202;
   text-align: center;
   display: block;
   position: absolute;
  bottom: 8vh;
  right: 0;
  left: 0;
}

.above-the-fold span img{
  height: 20px;
  position: relative;
  animation: scrollDown 1.3s infinite;
}

@keyframes scrollDown {
    0% {top: 5px;}
    50% {top: 13px;}
    100% {top: 5px;}
}

.wrapper{
  max-width: 1280px;
  margin: auto;
  margin-top: 80vh;
  visibility: hidden;
}
.wrapper {
  padding: 50px 150px;
}
.wrapper::before, .wrapper::after {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 5px;
  content: "";
  z-index: 9;
}
.wrapper::before {
  height: 100vh;
  background-color: #fff;
}
.wrapper::after {
  height: 50vh;
  background-color: #09ffb3;
  box-shadow: 0px 0px 10px #09ffb3;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

section{
  padding: 40px 0;
}
#ninety{
  margin-top: 350px;
}
.date-container{
  text-align: center;
}
.date{
  display: inline-block;
  background: url(../img/darkness.png);
  background-attachment: fixed;
  color: #fff;
  font-family: 'Anton', sans-serif;
  position: absolute;
  z-index: 90;
  margin-top: -100px;
  left: 0;
  right: 0;
  font-size: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
}
#ninety-four .date{
  height: 600px;
}
.timeline.active{
  color: #09ffb3;
  text-shadow: 0px 0px 10px #09ffb3;
}
.article{
  padding-right: 80px;
}
.article:nth-of-type(3n){
  padding-right: 0;
  padding-left: 80px;
  text-align: right;
  margin-top: 200px;
}
.article:nth-of-type(3n) .card{
  margin-left: calc(100% - 189px);
}
.article-title{
  font-family: 'Anton', sans-serif;
  color: #09ffb3;
  letter-spacing: 1px;
  font-weight: normal;
  position: relative;
}
/* span::before{
  content: "";
  position: absolute;
  background: #09ffb3;
  height: 10px;
  width: 100%;
  top: 5px;
} */

.more a{
  color: #6c9d8e;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: none;
}
.more a:first-of-type{
  display: block;
}
.more img{
  display: inline-block;
  width: 18px;
  margin-left: 5px;
}
