:root {
  --white: white;
  --black: black;
}

body {
  color: #333;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  display: flex;
}

h1 {
  letter-spacing: -.04em;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #f73c95, #153dcb);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

.subheading {
  font-size: 2rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.5rem;
  }
}


@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}