.navbar {
  margin-top: 32px !important;
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: -webkit-fill-available;
  margin: 0 auto;
  align-items: center;
}

.image {
  width: 150px;
  height: auto;

  img {
    width: 100%;
    height: auto;
  }
}

.button-wrapper {
  display: flex;
  gap: 8px;
}

.button {
  border: none;
  padding: 12px 16px;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    #e30613;
  box-shadow: 0px 4px 2px -3px rgba(0, 0, 0, 0.25), 0px 0px 0px 0.5px #ff7f74;

  font-family: "Geomanist", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;

  transition: all 0.3s ease;
}

.language-button {
  color: #09090b;
  border-radius: 8px;
  background: var(--Colors-white-white, #fff);
  box-shadow: 0px 1px 1px 0px rgba(18, 18, 18, 0.1),
    0px 0px 0px 1px rgba(18, 18, 18, 0.07),
    0px 1px 3px 0px rgba(18, 18, 18, 0.1);
  display: flex;
  align-items: center;
  gap: 6px;

  transition: all 0.3s ease;

  img {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 820px) {
  .navbar {
    margin: 32px 16px 0px 16px !important;
  }

  .button {
    padding: 8px 12px;
  }
}
