.card {
  width: 20rem;
  height: 31.0625rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  margin: 3.125rem 3.75rem;
  display: flex;
  justify-content: center;
}
.card__content {
  margin: 1rem 1rem;
}
.card__content__image {
  margin-bottom: 0;
}
.card__content__image img {
  width: 18rem;
  height: 18rem;
  border-radius: 0.625rem;
}
.card__content__text {
  margin-top: 1.25rem;
  padding: 0.625rem;
  text-align: center;
  font-size: 0.9375rem;
}
.card__content__text__main-text {
  font-weight: bold;
  font-size: 1.25rem;
}
.card__content__text__sub-text {
  margin-top: 1.25rem;
  color: var(--grayish-blue);
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

button,
input {
  overflow: visible;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

main {
  display: block;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}

@font-face {
  font-family: Outfit;
  src: local("Outfit"), local("Outfit-Regular"), url("../assets/Outfit/Outfit-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Outfit;
  src: local("Outfit"), local("Outfit-Bold"), url("../assets/Outfit/Outfit-Bold.ttf");
  font-weight: 700;
}
:root {
  --main-font: Outfit;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

a, a:visited, a:active {
  text-decoration: none;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  color: var(--dark-blue);
  background-color: var(--light-gray);
}
@media (min-width: 87em) {
  body {
    display: flex;
    justify-content: center;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  line-height: inherit;
}

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
