*{
  box-sizing: border-box;
  text-decoration: none;
}

html {
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
}

:root {
  background-color:  #F5F5F5;
}

header {
  background-color: #F7F7F7;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0169B2;
}

.main-text {
  font-size: 16px;
  font-weight: 400;
  color: #4F4F4F;
  margin: 20px auto;
}

.subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #4F4F4F;
}

.btn-primary {
  width: 376px;
  padding: 14px 8px;
  --bs-btn-bg: #0169B2;
  --bs-btn-hover-bg: #014e85;
}

footer {
  background-color: #0169B2;
}

footer .main-text {
  padding: 20px;
  color: #FFFFFF;
}

@media (max-width: 576px) {
  h2 {
    font-size: 20px;
  }

  .btn-primary {
    width: 354px;
  }
}