:root {
  --font-family-base: 'Inter', system-ui;
}

body {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #7e849c;
  background-color: #fff;
}

h1,
h2,
h3 {
  color: #0d0d0e;
  font-weight: 700;
  line-height: inherit;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1340px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 20px;
  color: #fff;
  background-color: #2167fb;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-3px);
  }

  &:focus-visible {
    outline: 2px dotted #5046e5;
    outline-offset: 3px;
  }

  &.primary {
    &:hover {
      box-shadow: 0 4px 12px rgba(51, 92, 255, 0.6);
    }
  }

  &.green {
    background: #33ad53;
    &:hover {
      box-shadow: 0 4px 12px rgba(51, 173, 83, 0.6);
    }
  }
  &.purple {
    background: #823fc2;
    &:hover {
      box-shadow: 0 4px 12px rgba(130, 63, 194, 0.6);
    }
  }
  &.orange {
    background: #fd7805;
    &:hover {
      box-shadow: 0 4px 12px rgba(253, 120, 5, 0.6);
    }
  }
  &.yellow {
    background: #eaa205;
    &:hover {
      box-shadow: 0 4px 12px rgba(234, 162, 5, 0.6);
    }
  }
  &.mint {
    background: #06b3ab;
    &:hover {
      box-shadow: 0 4px 12px rgba(6, 179, 171, 0.6);
    }
  }
}

.visibility-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

/* #region MEDIA QUERIES */

@media (width <= 1024px) {
  .container {
    max-width: 100%;
  }
}

@media (width <= 744px) {
  .container {
    padding-inline: 20px;
  }
  h1 {
    font-size: 30px;
  }
}

/* #endregion MEDIA QUERIES */
