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

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

body {
  overflow-x: hidden;
}

body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #383838;
  font-family: 'Play', sans-serif;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  max-height: 100%;
}

header {
  height: 60px;
  background-color: #ec0049
}

.content {
  width: 100vw;
  padding: 40px 20px;
  text-align: center;

  @media screen and (min-width: 768px) {
    padding: 30vh 15vw;
  }
}

.headline {
  font-size: 30px;
  font-weight: 700;

  @media screen and (min-width: 768px) {
    font-size: 50px;
  }
}

.subheadline {
  font-size: 20px;

  @media screen and (min-width: 768px) {
    font-size: 30px;
  }
}