html {
  --backgroundcolor-grey-700: linear-gradient(rgb(14, 14, 15), rgb(6, 6, 6));
  --backgroundcolor-grey-900: linear-gradient(rgb(10, 10, 10), rgb(0, 0, 0));
  --color-black: #131313;
  --color-grey-100: rgb(235, 235, 235);
  --color-grey-200: rgb(235, 239, 251);
  --color-grey-300: rgb(205, 205, 205);
  --fontsize-h1: 5rem;
  --fontsize-h2: 3rem;
  --fontsize-p: 1.5rem;
  --font-family: "Geologica", sans-serif;

  width: 100%;
  height: 100%;
}
/* General Styles for the Page */
body {
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Particles Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  /* z-index: -1; */
}
/* ---- stats.js ---- */
.count-particles {
  background: #000022, 0;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles {
  font-size: 1.1em;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}
/* Centering the "nofomo" text */
#logo-container {
  text-align: center;
  z-index: 1;
}

#nofomo {
  font-family: var(--font-family);
  color: var(--color-grey-300);
  font-size: var(--fontsize-h1);
  letter-spacing: 0.9rem;
  text-decoration: none;
  transition: transform 0.7s ease-out;
  opacity: 0.8;
}

#nofomo:hover {
  opacity: 1;
  transition: transform 0.7s ease-out;
  transform: scale(1.05);
}

@media (max-width: 48rem) {
  #nofomo {
    font-size: var(--fontsize-p);
  }
}
