.mobile-panel {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(181, 181, 181, 0.06) 0%, rgba(255, 255, 255, 0.00) 100%);
  backdrop-filter: blur(50px);
  padding: 2rem 2rem 8rem 2rem;
}

.close-panel {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.close-panel button {
  background: none;
  border: none;
  color: var(--tertiary-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.close-panel i {
  font-size: 3rem;
  cursor: pointer;
}

.close-panel i:hover {
  color: var(--quaternary-color);
}

.mobile-panel-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  font-size: 1.5em;
}

.mobile-logo-container img {
  height: 12rem !important;
  object-fit: contain;
  user-select: none;
}

.mobile-panel-nav {
  height: 20rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}

.mobile-panel-nav a,
.mobile-social-links a {
  color: var(--tertiary-color);
}

.center-adjust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.credits {
  font-size: 0.8em;
  color: var(--quaternary-color);
}

.credits a {
  color: var(--tertiary-color);
  font-weight: 600;
  text-decoration: none;
}