* {
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}

body {
  font-family: "Inter", sans-serif;
  background: #121111;
}

/* INTER IMPORT 2 YAYYYY */

.center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 200%;
  text-align: center;
}

h2 {
  font-size: 200%;
  text-align: center;
}

.green {
  color: #CBFFBA;
}

.blue {
  color: #DCB4FF;
  /* I KNOW THIS IS NOT A BLUE BUT I LIKE IT */
}

/* NAVIGATION BAR */

.nav {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 175%;
  color: #FFF;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

.star {
  color: #ffffff9a;
  font-size: 100%;
  font-style: normal;
  cursor: default;
  padding-left: 2vh;
  padding-right: 2vh;
}

.fab {
  display: none;
  position: fixed;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
    border: 1px solid rgba(216, 216, 216, 0.12);
    background: rgba(39, 39, 39, 0.74);
    box-shadow: 0px 12px 84.7px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4.5px);
  justify-content: center;
  align-items: center;
  z-index: 1100;
  cursor: pointer;
  transition: background 0.2s, transform 0.4s cubic-bezier(.4,2,.6,1);
}
.fab.open {
  transform: translateX(-50%) rotate(45deg);
}
.fab img {
  width: 32px;
  height: 32px;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.fab.open img {
  transform: rotate(90deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(18,17,17,0.7);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.4,2,.6,1), backdrop-filter 0.6s cubic-bezier(.4,2,.6,1);
}
.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
  backdrop-filter: blur(8px);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity 0.6s cubic-bezier(.4,2,.6,1), transform 0.6s cubic-bezier(.4,2,.6,1);
}
.mobile-nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.mobile-nav-links a {
  margin: 18px 0;
  font-size: 180%;
  color: #FFF;
  text-decoration: none;
  font-family: "Amiri", serif;
  font-style: italic;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(60px);
  transition:
    color 0.2s,
    opacity 0.6s cubic-bezier(.4,2,.6,1),
    transform 0.6s cubic-bezier(.4,2,.6,1);
}
.mobile-nav-links.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-links.open a:nth-child(1) {
  transition-delay: 0.15s;
}

.mobile-nav-links.open a:nth-child(2) {
  transition-delay: 0.3s;
}

.mobile-nav-links.open a:nth-child(3) {
  transition-delay: 0.45s;
}

.mobile-nav-links.open a:nth-child(4) {
  transition-delay: 0.6s;
}

.mobile-nav-links a {
  transition-delay: 0s;
}






























/* Responsive: show FAB and hide nav on small screens */
@media (max-width: 600px) {
  .nav {
    display: none !important;
  }
  .fab {
    display: flex;
  }
}