  /* === Base Styles === */
  body {
    justify-self: center;
    background-color: #1d1f27; /* Visual Placeholder */
    color: aliceblue;
    width: 90%;
    font-family: "Google Sans", sans-serif;
    margin: 0 auto;
  }
  
  @media (min-width: 1110px) {
    body {
      justify-self: center;
      background-color: #1d1f27; /* Visual Placeholder */
      width: 1000px;
      font-family: "Google Sans", sans-serif;
    }
  }

  /* === Navbar === */
  .logo {
    filter: invert(1);
  }
  
  .logo img {
    padding-right: 16px;
    height: 35px;
    width: 35px;
  }
  
  .navbar {
    padding-block: 0px;
    width: 100%;
    padding-top: 50px;
    display: flex;
    align-items: left;
    height: 35px;
    padding-bottom: 20px;
  }
  
  .navbarButton.active {
    background-color: #ffffff78;
    color: rgb(255, 255, 255);
  }
  
  .navbarButton.active:hover {
    color: white;
  }
  
  .navbarButton {
    background-color: transparent;
    height: 100%;
    color: rgba(255, 255, 255, 0.605);
    border: 0px;
    border-radius: 15px;
    cursor: pointer;
    padding-inline: 10px;
    font-family: "Fira Code", monospace;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  
  .navbarButton:hover {
    color: rgb(255, 255, 255);
  }
  
  /* === Banner === */
  .banner {
    height: 350;
  }
  
  .banner img {
    border-radius: 30px;
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  
  main {
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  
  main.fade-out {
    opacity: 0.3;
  }
  
  main.fade-in {
    opacity: 1;
  }
  
  
  .button-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .nav-highlight {
    position: absolute;
    height: 100%;
    border-radius: 15px;
    background-color: #ffffff78;
    transition: none !important;
    z-index: -1;
  }