@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: flex;
    align-items: center;
  }
  nav li.logo-container {
    padding-left: 1rem;
  }
}

@media (max-width: 450px) {
  .sidebar {
    width: 100%;
  }
}
@keyframes pulse-neon {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 217, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 217, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 217, 246, 0);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .footer-section h3::after {
    margin: 8px auto 0 auto;
  }
}
