@font-face {
   font-family: 'Open Sans';
   src: url('OpenSans-Regular.ttf');
}
body {
  font-family: 'Open Sans', serif;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
  min-height: 100vh;
  width: 104%; /* tegen scrollbar flickering op telefoon door star js effect */
  color: white;
}
#center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.green {
  color: #006600;
}
@media only screen and (max-width: 1199px)  {
  .textsize1 {
    font-size: 14.6em;
    line-height: 86%;
    margin-left: -6px;
  }
  .textsize2 {
    font-size: 5em;
  }
  .textsize3 {
    font-size: 2.8em;
  }
  .textsize4 {
    font-size: 1.3em;
  }
}
@media only screen and (min-width: 1200px)  {
  .textsize1 {
    font-size: 11em;
    line-height: 86%;
  }
  .textsize2 {
    font-size: 2.2em;
  }
  .textsize3 {
    font-size: 1.2em;
  }
  .textsize4 {
    font-size: 1.3em;
  }
}
.textsize1::first-letter {
   margin-left: -0.04em;
}
.textsize4 {
   margin-left: -0.025em; 
}
@keyframes blinker {
  from { opacity: 0.22; }
  50% { opacity: 1; }
  to { opacity: 0.22; }
}
.star {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(white, white);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px white);
}