* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  --primary-color: #ffffff;
  --light-color: #696969;
  --dark-color: #000000;
}

body {

  visibility: hidden;
  color: white;
  background: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;

}


/* Utility */
.container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}


/* Text */
a {
  text-decoration: none;
  color: #838383;
  transition: 0.5s;
  font-weight: normal;
  display: block;

}

a:hover {
  color: var(--primary-color);
}


h1 {
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0px 10px 0px;
  font-weight: bold;
  color: #b2ffff;
}

h1 .geel {
  color: #ffffb2;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 25px 0px 15px 0px;
}

h3 {
  font-size: 1.3rem;
  font-weight: normal;
  margin: 5px 0px 2px 0px;
}

h4 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 15px 0 1px;
}

p {
  margin: 0px;
  font-size:1rem;

}

p.subtitle {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.8rem;
}


button {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #000000;
  overflow-x: hidden;

}









/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}

table th,
table td {
  padding: 5px 10px 5px 0px;
  border-bottom: 1px solid #ddd;
}

td {
  padding-right: 5px;
}


/* Utility */
.hidden {
  display: none;
}


ul {
  list-style: none;
}




@media (max-width: 1200px) {

  .container {
    padding: 0 38px;
  }


  h1 {
    font-size: 5rem;
  }
}



@media (max-width: 720px) {

  .container {
    padding: 0 18px;
  }


  h1 {
    font-size: 3rem;
  }


}




/* MOBILE VIEW */
@media (max-width: 480px) {

   .container {
    padding: 0 24px;
  }
}