.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 0.25rem;
  }
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .burger div {
    background-color: var(--text-color);
    height: 3px;
    margin: 4px 0;
    width: 25px;
  }
  
  nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
  
  nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: scale 0.3s ease;
    white-space: nowrap;
  }
  
  nav a:hover {
    scale: 1.2
  }

  .nav-action-button {
    padding: 0.25rem;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 0.25rem;
  }
  .marquee {
    font-size: 2rem;
    margin: 0 15px 0 10px;
    color: palevioletred;
  }

  @media (max-width: 768px) {
    .burger {
      display: flex;
    }
  
    nav {
      display: none;
      flex-direction: column;
      gap: 10px;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: white;
      padding: 10px 30px;
      border-radius: 5px;
      width: 50%;
      border: 2px solid var(--primary-color);
    }
  
    nav.active {
      display: flex;
    }
  }  

