:root {
  --ff-base: 'Sentient', sans-serif;
  --ff-satoshi: 'Satoshi', sans-serif;
  --ff-caveat: 'Caveat', cursive;
}

body {
  font-family: var(--ff-base);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  background-color: #efe8d5;
}

h1 {
  font-size: 26px;
  font-weight: inherit;
  line-height: 1;
}

h2 {
  font-size: 82px;
  font-weight: inherit;
  line-height: 1;
}

h3 {
  font-size: 36px;
  font-weight: inherit;
  line-height: 1;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1820px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}

.btn {
  display: flex;
  align-items: center;
  max-width: 334px;
  width: 100%;
  padding: 20px 38px 20px 40px;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #000;
  background: #000;
  color: #efe8d5;
  text-align: center;
  font-family: var(--ff-satoshi);
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s;

  &.btn--white {
    background: #efe8d5;
    color: #000;
  }

  svg {
    transition: rotate 0.5s;
  }
  &:hover {
    box-shadow: 0px 0px 20px 0px #000;

    svg {
      rotate: 0.25turn;
    }
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.form-wrapper {
  margin-block: 20px 12px;
}

/* #region MEDIA QUERIES */

@media (width <= 1024px) {
  .container {
    padding-inline: 16px;
  }
}

@media (width <= 768px) {
  .btn {
    padding: 18px 28px 18px 32px;
    font-size: 22px;
  }
}

/* #endregion MEDIA QUERIES */
