@media screen and (max-width: 480px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    background-color: var(--background-color);
    color: var(--primary-text-color);
  }

  .vistmo-name-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0 20px 0;
  }

  .vistmo-logo-image {
    width: 40px;
    height: 35px;
  }

  .nav-links {
    display: none;
  }

  .contact-button {
    display: none;
  }

  .business-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 3px;
  }
}

@media screen and (min-width: 481px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    padding-left: 3.4375rem;
    padding-right: 3.4375rem;
    background-color: var(--background-color);
    color: var(--primary-text-color);
    height: 90px;
  }

  .vistmo-name-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .vistmo-logo-image {
    width: 33px;
    height: 28px;
  }

  .business-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 3px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    color: var(--primary-text-color);
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
  }

  #home-nav-button,
  #services-nav-button,
  #about-nav-button,
  #contact-nav-button {
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-text-color);
    background-color: var(--background-color);
    border-radius: 5px;
    height: 32px;
  }

  #home-nav-button:hover,
  #services-nav-button:hover,
  #about-nav-button:hover,
  #contact-nav-button:hover {
    color: var(--hint-text-color);
    background-color: var(--background-color);
    border-radius: 5px;
    height: 32px;
  }

  .contact-button {
    height: 48px;
    width: 133px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
  }
}