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

h1 {
  color: #b5838d;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
}

.section {
  min-height: 100vh;
  background-color: #f4faff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  font-size: 8rem;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 6rem;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 4rem;
  }
}


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