html {
    scroll-behavior: smooth;
  --dark-main: #1e1e1e;
  --main: #2e2e2e;
  --seconday: #FF6600;
  --dark-secondary: #cc5200;
  --light-white: #e0e0e0;
  }
  
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  
  body div * {
    padding: 0px;
    margin: 0px
  }
  
  /* TOP GREETING */
  
  /* ANIMATED TOP GREETING BACKGROUND */
  
  
  .top-greeting {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }
  
  .top-greeting>div.top-greeting-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: black;
  }
  
  .top-greeting>div:nth-child(1) {
    left: 20%;
  }
  
  .top-greeting>div:nth-child(2) {
    left: 40%
  }
  
  .top-greeting>div:nth-child(3) {
    left: 60%
  }
  
  .top-greeting>div:nth-child(4) {
    left: 80%
  }
  
  .top-greeting>div.top-greeting-bg:after {
    content: '';
    position: absolute;
    top: 0px;
    left: -0.5px;
    -webkit-transform: translateY(-160px);
        -ms-transform: translateY(-160px);
            transform: translateY(-160px);
    height: 160px;
    width: 2px;
    background-color: #FF6600;
  }
  
  @-webkit-keyframes drop {
    90% {
      height: 20px;
    }
    100% {
      height: 160px;
      -webkit-transform: translateY(calc(100vh + 160px));
              transform: translateY(calc(100vh + 160px));
    }
  }
  
  @keyframes drop {
    90% {
      height: 20px;
    }
    100% {
      height: 160px;
      -webkit-transform: translateY(calc(100vh + 160px));
              transform: translateY(calc(100vh + 160px));
    }
  }
  
  .top-greeting>div:nth-child(1):after {
    -webkit-animation: drop 3s infinite linear;
            animation: drop 3s infinite linear;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  
  .top-greeting>div:nth-child(2):after {
    -webkit-animation: drop 2s infinite linear;
            animation: drop 2s infinite linear;
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  
  .top-greeting>div:nth-child(3):after {
    -webkit-animation: drop 3s infinite linear;
            animation: drop 3s infinite linear;
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  
  .top-greeting>div:nth-child(4):after {
    -webkit-animation: drop 2s infinite linear;
            animation: drop 2s infinite linear;
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  
  
  /* END OF ANIMATED TOP GREETING BACKGROUND */
  
  div.top-greeting {
    position: relative;
    height: 100vh;
    background-color: var(--main);
    vertical-align: middle;
    text-align: center;
  }
  
  div.center-box {
    position: absolute;
    padding: 2%;
    left: 50%;
    top: 50%;
    border-radius: 15px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  div.center-box *{  
    text-align: center;
    margin: 0 auto;
  }
  
  div.top-greeting div.center-box h1{
  letter-spacing: 10px;
  font-size: 9em;
  color: white;
  text-shadow: 4px 4px 0px #ff6600;
  animation: open 3s ease-in-out;
  }
  
  @keyframes open {
  from {letter-spacing: -30px;} 
  to {letter-spacing: 10px;}
  }
  
  div.top-greeting div.center-box h2{
    font-size: 2em;
    color: white;
    letter-spacing: 5px;
  }
  
  div.top-greeting div.center-box p{
    max-width: 445px;
    color: var(--light-white);
    font-size: 1.1em;
  }
  
  div.top-greeting div.center-box a, div.top-greeting div.center-box btn{
    border-radius: 5px;
    font-size: 1.5em;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 15px;
    color: white;
    background-color: #0c0c0c;
    margin-right: 2%;
    font-weight: 400;
    -webkit-box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
            box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
    text-decoration: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  div.top-greeting div.center-box a:hover, div.top-greeting div.center-box btn:hover{
    cursor: pointer;
    background-color: #ff6600;
    -webkit-box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #ff6600;
            box-shadow: 0px 0px 0px 0px #000, 0px 0px 0px 2px #ff6600;
  }
  
  @media screen and (max-width: 880px) {
    div.top-greeting div.center-box h1{
        letter-spacing: 0px;
        font-size: 7em;
    }
  }
  
  @media screen and (max-width: 500px) {
    div.top-greeting div.center-box h1{
      font-size: 6em;
      color: white;
      text-shadow: 4px 4px 0px #ff6600;
    }
  }
  
  /* STATS */
  p#stats_info{
    display: block;
    width: 100%;
    margin: 0;
    padding-top: 10px;
    text-align: center;
    background-color: #222222;
    color: var(--light-white);
  }
  
  div.stats {
    background-color: #222222;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 4% 5vh;
  }
  
  div.stats {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  
  justify-content: space-evenly;
  }
  
  div.stats > div  {
  border-radius: 10px;
  width: 25%;
  display: inline-block;
  padding: 8px 0;
  background-color: var(--main);
  
  transition: 0.3s all;
  }
  
  div.stats div:hover {
  width: 40%;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 1.2em;
  box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
  transition: 0.3s all;
  }
  
  div.stats div h2{
  text-align: center;
  margin: auto;
  padding: 10px;
  color: white;
  font-size: 2em;
  }
  
  h3.number {
  text-align: center;
  margin: auto;
  padding: 10px;
  color: #ff6600;
  font-size: 4em;
  font-weight: bold ;
  }
  
  @media screen and (max-width: 800px) {
  
  
    div.stats  div {
      width: 100%;
      margin-top: 10px;
    }
  
    div.stats div:hover {
      width: 100%;
      box-shadow: 0px 0px 0px 2px #000, 2px 2px 0px 2px #FF6600;
      transition: 0.3s all;
    }
  
    div.stats div h1{
        text-align: center;
        margin: 0 auto;
        padding: 10px;
        font-size: 2em;
        color: white;
    }
    
  
    /* Features mobile version */
  
    div.features div >*{      
      display: block !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  
    div.features div div {
      width: 95% !important;
    }
  
  }
  
  div.features {
  margin-top: 20px;
  text-align: center;
  color: white;
  }
  
  h2.big {
  font-size: 2em;
  font-weight: bold;
  }
  
  div.features div {
  margin-top: 20px;
  margin-bottom: 20px;
  }
  
  div.features div.normal-box {
  background-color: #404040;
  }
  
  div.features div div{
  width: 49%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  }
  
  div.features h2 {
    text-align: center !important;
  }

  div.features div div *{
    max-width: 450px;
    vertical-align: middle;
    text-align: left;
    margin: auto;
  }
  
  img.feature-img-useful {
  width: 100%;
  height: 100%;
  max-width:  35em;
  }
  
  img.feature-img-moderation {
  width: 90%;
  height: 90%;
  max-width: 40em;
  }
  
  img.feature-img-games {
  width: 90%;
  height: 60%;
  max-width: 35em;
  }
  
  div.features div div h1 {
  font-size: 1.6em;
  }
  
  div.features div div p {
  font-size: 1em;
  color: #e0e0e0;
  }
  