.topbar {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--pad);
  flex-direction: row;
  border-top: 1px black solid;
  border-bottom: 1px black solid;
  padding-top: var(--pad);
  padding-bottom: var(--pad)
}

.topbar .logo {
  width: 140px;
  height: 140px;
  border-radius: 140px;
}

.topbar .description h1 {
  font-size: 2em;
}

.topbar .links {
  display: flex;
  gap: var(--pad);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.links .link {
  text-decoration: none;
}

.link img {
  width: 64px;
  height: 64px;
  border-radius: 64px;
}

.sale-info {
  gap: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: var(--pad) 0;
  border-bottom: 1px black solid;
  font-size: 2em;
  background: #98fffa;

}

.sale-title {
  font-weight: bold;
  font-size: 1.5em;
}

@media screen and (width <= 990px) {

}

@media screen and (width <= 768px) {
  body {
    padding-top: 0px;
  }

  .topbar {
    flex-direction: column;
  }
}

@media screen and (width <= 480px) {
}