body {
    background-color: black;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web', sans-serif;
  }
  
  .navbar {
    background: rgb(135, 255, 255);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    color: #b01313;
  }
  
  #navbar__logo {
    background-color: #9312c6;
    opacity: 0.8;
    background-image: linear-gradient(to top, #87FFFF 0%, #000 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 3.4rem;
    font-family: 'Titillium Web', sans-serif;
    position: relative;
  }
  
  #navbar__logo img {
    width: 65px;
    height: auto;
    margin-left: 10px;
  }
  
  .fa-gem {
    margin-right: 0.5rem;
  }
  
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  .navbar__item {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  
  .navbar__links {
    color: rgb(255, 0, 215);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: auto;
  }
  
  .navbar__links:hover {
    color: #FF00D7;
    background: rgb(3, 107, 126);
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    border-radius: 10px;
  }
  
  .staff-marker {
    font-size: 2rem;
    color: rgb(135, 255, 255);
    margin-top: 1rem;
    margin-bottom: 0rem;
    display: flex;
  }
  
  .members-marker {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(135, 255, 255);
    margin-bottom: 0rem;
    margin-top: 2rem;
    display: flex;
  }

  .pred-marker {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(126, 0, 0);
    margin-bottom: 0rem;
    margin-top: 2rem;
    display: flex;
  }
  
  .staff-container a {
    text-decoration: none;
    color: rgb(255, 0, 215);
    font-size: 30px;
    font-family: sans-serif;
    border-radius: 5px;
    transition: color 0.3s ease;
  }
  
  .members-container a {
    text-decoration: none;
    color: rgb(255, 0, 215);
    font-size: 30px;
    font-family: sans-serif;
    border-radius: 5px;
    transition: color 0.3s ease;
  }

  .bitch-container a {
    text-decoration: none;
    color: rgb(255, 0, 215);
    font-size: 30px;
    font-family: sans-serif;
    border-radius: 5px;
    transition: color 0.3s ease;
  }
  
  .staff-container a:hover, .members-container a:hover, .bitch-container a:hover  {
    color: rgb(3, 107, 126);
  }
  
  .staff-container {
    width: 200px;
    height: 183px;
    background-color: rgb(0, 65, 65);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 4px double;
    animation: rainbow 4s infinite alternate;
  }
  
  .members-container {
    width: 200px;
    height: 280px;
    background-color: rgb(0, 65, 65);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 4px double;
  }

  .bitch-container {
    width: 200px;
    height: 85px;
    background-color: rgb(126, 0, 0);
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 4px double;
  }

  @keyframes rainbow {
    0% {
        color: red
    }

    16.666% {
        color: orange
    }

    33.333% {
        color: #ff0
    }

    50% {
        color: green
    }

    66.666% {
        color: blue
    }

    100% {
        color: red
    }
}
  
  @media screen and (max-width: 960px) {
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
  
    .navbar__menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: .1;
      transition: all 0.5s ease;
      height: 50vh;
      z-index: -1;
    }
  
    .navbar__menu.active {
      background: rgb(0, 7, 7);
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 60vh;
      font-size: 1.6rem;
    }
  
    #navbar__logo {
      padding-left: 25px;
    }
  
    .navbar__toggle .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: rgb(3, 107, 126);
    }
  
    .navbar__item {
      width: 100%;
      color: #26183d;
    }
  
    .navbar__links {
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: table;
    }
  
    .navbar__btn {
      padding-bottom: 2rem;
    }
  
    #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
    }
  
    .navbar__toggle .bar {
      display: block;
      cursor: pointer;
    }
  
    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }
  
    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
      
    .box {
      padding: 10px;
    }
  
    .staff-container, .members-container, .bitch-container{
      width: 100%;
      height: auto;
      padding: 15px;
      margin-bottom: 10px;
    }
  
    .staff-marker, .members-marker {
      font-size: 1.5rem;
    }
  
    .staff-container a, .members-container a, .bitch-container a {
      font-size: 25px;
    }
  
    .navbar__btn {
      display: none;
    }
  }
  