#desknav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 15rem;
  backdrop-filter: blur(5px);
  z-index: 100;
}
#desknav div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
#desknav a {
  color: #f5f5f5;
  text-decoration: none;
  opacity: 75%;
  font-size: 1.25rem;
  transition: 0.2s;
}
#desknav a:hover {
  opacity: 100%;
}
#desknav button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  background: #5865F2;
  color: #f5f5f5;
  width: max-content;
  padding: 0.5rem 1rem;
  border: 1px solid #5865F2;
  border-radius: 0.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s;
}
#desknav button:hover {
  opacity: 0.8;
}
#desknav button img {
  height: 1.5rem;
  width: 1.5rem;
}
.logo {
  height: 5rem;
  width: 5rem;
  object-fit: cover;
  border: none;
  border-radius: 50%;
}
#mobinav,
#mobnav {
  display: none;
}
.join {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  position: fixed;
  bottom: 0.5rem;
  left: 1rem;
  right: 1rem;
  background: #5865F2;
  color: #f5f5f5;
  padding: 0.5rem 1rem;
  border: 1px solid #5865F2;
  border-radius: 0.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s;
}
.join img {
  height: 1.5rem;
  width: 1.5rem
}
.active {
  display: flex !important;
}
a {
  color: #f5f5f5;
  text-decoration: none;
}

@media (max-width: 800px) {
  #desknav {
    display: none;
  }
  #mobnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 1;
  }
  #mobnav div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  #mobinav {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 1rem;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 100;
  }
  #mobinav div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  #mobinav a {
    width: 100%;
    font-size: 1.5rem;
    border-top: 1px solid #f5f5f5;
  }
  .menu {
    margin-right: 2px;
    background: transparent;
    border: none;
  }
  .menu img {
    height: 2rem;
    width: 2rem;
    object-fit: cover;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  #desknav {
    margin: 0 5rem;
  }
}