:root {
  --font-family-base: 'Montserrat', sans-serif;
  --font-family-secondary: 'Manrope', sans-serif;
  --primary: #294886;
  --secondary: #003eb3;
  --tertiary: #a2c3ff;
  --gradient: linear-gradient(90deg, #534feb 0%, #2f2d85 100%);
  --gradient-1: linear-gradient(90deg, #6b9fff 0%, #534feb 100%);
}

body {
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary);
  background-color: white;

  &.lock {
    overflow: clip;
  }
}

h1,
h2 {
  font-family: var(--font-family-secondary);
  font-weight: 800;
}

h1 {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -1.44px;
}

h2 {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--secondary);
}

h3 {
  font-size: 30px;
  line-height: 1.4;
  color: #294886;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1304px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 376px;
  width: 100%;
  padding: 16px 34px;
  font-size: 25px;
  line-height: normal;
  color: white;
  border-radius: 10px;
  background: var(--gradient);
  cursor: pointer;
  transition: background 0.3s;

  &:hover {
    background: var(--gradient-1);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* #region MEDIA QUERIES */

@media (width < 1440px) {
  .container {
    padding-inline: 20px;
  }
}

@media (width < 1200px) {
  .container {
    max-width: 100%;
  }
  h2 {
    font-size: 40px;
  }
}

@media (width < 768px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 30px;
  }

  .btn {
    font-size: 18px;
    padding: 20px 8px;
  }
}

/* #endregion MEDIA QUERIES */
