.navbar {
  position: fixed;
  top: 0;
  transform: scaleY();
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.4s;
  width: 100%;
  max-width: 100%;
  z-index: 99;
  height: 5.5em;
  border-bottom: 3px solid #343a40;
  border-width: thin;
}

h1 {
  font-size: 2em;
  text-align: center;
  padding: 0.5em;
  text-transform: uppercase;
}

.h1--link {
  text-decoration: none;
}

.nav--links {
  display: flex;
  gap: 2em;
  margin-left: auto;
  position: relative;
  right: 5em;
}

.nav--link:link,
:visited {
  font-size: 1.5em;
  text-decoration: none;
  gap: 2em;
}

.nav--link--deal {
  color: #76ba99;
}

.nav--link--deal:hover {
  color: #5e957a;
}

.nav--link--deal:active {
  color: #5e957a;
}

.icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar {
    border: none;
    justify-content: space-between;
    padding: 0 !important;
    width: 100svw;
  }
  h1 {
    text-align: left;
    width: 50%;
    padding: 0 0 0 0.5em;
  }

  .icon {
    float: right;
    display: block;
    margin-right: 40px;
    background: none;
  }
  .h1--link {
    margin: 0;
    gap: 0;
    font-size: 18px;
  }
  .nav--links {
    display: none;
  }
  .responsive,
  .icon {
    position: absolute;
    display: block;
    right: 0;
    top: 40px;
  }
  .responsive {
    display: flex;
    flex-direction: column;
    top: 85px;
    width: 100svw;
    text-align: center;
  }
}
