
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v40-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}


body {
  display: grid;
  justify-items: center;
  align-items: center;
  height: 95vh;
  font-family: 'Open Sans';
  font-weight: normal;
  color: #333;
  background-color: #307dcd;
}


h1 {
  font-size: 38px;
  margin-bottom: 48px;
  line-height: 140%;
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

h2 {
  font-size: 24px;
  line-height: 140%;
}

h2 span {
  display: block;
}

h3 {
  font-size: 24px;
  line-height: 140%;
}

p {
  font-size: 20px;
  line-height: 140%;
}

.highlight {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 48px 0;
}

.info-hl {
  background-color: #333;
  text-align: center;
  padding: 24px 0;
  color: #307dcd;
}

a {
  color: #f0f0f0;
  text-underline-offset: 2px;
}

a:hover {
  color: #333;
}


article {
  max-width: 640px;
  margin: 0 auto;
}

footer {
  text-align: center;
  margin: 96px 0;
}

@media only screen and (max-width: 640px) {
  body {
    padding: 24px;
  }

  .card {
    justify-items: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .link div:first-child {
    width: 100px;
  }

  h3 {
    margin-top: 48px;
  }


}