* {
  box-sizing: border-box;
  margin-block: 0;
}

:root {
  --white: hsl(0, 0%, 100%);

  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);

  --card-shadow: 0 25px 25px 0 rgba(0, 0, 0, 4.77%);
}

/* outfit-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: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/outfit-v15-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-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: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/outfit-v15-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  background-color: var(--slate-300);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
}

main {
  background-color: var(--white);
  width: 20rem;
  margin-inline: auto;
  border-radius: 20px;
  padding: calc(16rem / 16);
  padding-block-end: 40px;
  box-shadow: var(--card-shadow);
}

section {
  text-align: center;

  h1 {
    color: var(--slate-900);
    font-size: 22px;
    line-height: 120%;
  }

  p {
    margin-top: 16px;
    color: var(--slate-500);
    letter-spacing: 0.2px;
    line-height: 140%;
    font-size: 15px;
  }
}

img {
  width: 288px;
  border-radius: 10px;
  margin-bottom: 24px;
}