.main-button {
  font-family: "London", "Inter", sans-serif;
  border: 1px solid #507941;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  padding: 8px 24px;
  color: #507941;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  align-items: center;
}
.main-button:hover {
  background-color: #507941;
  color: white;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(249, 255, 248, 0.8);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1019607843);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__buttons {
  display: flex;
  justify-content: end;
  gap: 16px;
}

@media (max-width: 767px) {
  .header {
    padding: 8px 0;
  }
  .header__content {
    gap: 8px;
  }
  .header__buttons {
    gap: 8px;
  }
  .main-button {
    padding: 6px 10px;
    font-size: 16px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=header.css.map */
