/* inknut-antiqua-300 - 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: 'Inknut Antiqua';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inknut-antiqua-v15-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inknut-antiqua-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: 'Inknut Antiqua';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inknut-antiqua-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inknut-antiqua-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: 'Inknut Antiqua';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inknut-antiqua-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
  font-family: "Inknut Antiqua", sans-serif;
  font-size: 14px;
}

body {
  background-color: black; /*whitesmoke*/
  color: whitesmoke; /*#3b342d*/
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  height: 100vh;
  text-align: left;
  margin: 0;
  line-height: .76;
}

.heartbeat-line {
  margin: 1rem;
  animation: heartbeat .8s infinite;
  display: block;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.009); }
  28% { transform: scale(1); }
  42% { transform: scale(1.005); }
  70% { transform: scale(1); }
}

@keyframes shrink {
  0% { transform: scale(1); }
  14% { transform: scale(0.8); }
  28% { transform: scale(0.6); }
  42% { transform: scale(0.5); }
  70% { transform: scale(0.6); }
}

@keyframes grow {
  0% { transform: scale(0.6); }
  14% { transform: scale(0.7); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

@keyframes shrinkMore {
  0% { transform: scale(0.6); }
  14% { transform: scale(0.5); }
  28% { transform: scale(0.4); }
  42% { transform: scale(0.3); }
  70% { transform: scale(0.4); }
}

@media (min-width: 375px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 32px;
  }
}
