:root {
  --apple: #31e981;
  --creme: #fffbf3;
  --dim-grey: #6f6f6f;
  --ivory: #f4f9e9;
  --old-lace: #fff6e5;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  text-align: left;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Bodoni Moda;
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
}

h4 {
  color: var(--apple);
  text-align: left;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Heebo;
  font-size: 18px;
  font-weight: 300;
  line-height: 16px;
}

p {
  text-align: left;
  margin-bottom: 10px;
  font-family: Heebo;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

.body {
  background-color: #eef6ff;
}

.container {
  max-width: 1200px;
  display: block;
}

.wrapper {
  display: flex;
}

.column {
  width: 100%;
  height: 100vh;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.heading {
  color: #444;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Spacegrotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph {
  color: #444;
  font-family: Spacegrotesk, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.links {
  flex-direction: column;
  display: flex;
}

.link {
  color: #444;
  font-family: Spacegrotesk, sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  position: static;
}

.link.color {
  color: #fa02e1;
  font-weight: 400;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 64px;
  }

  h4 {
    letter-spacing: 5px;
    font-size: 18px;
    line-height: 16px;
  }

  p {
    font-size: 16px;
    line-height: 32px;
  }

  .column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
  }

  h4 {
    text-align: center;
    letter-spacing: 4px;
  }

  p {
    text-align: center;
    font-size: 16px;
  }

  .wrapper {
    flex-direction: column;
  }

  .column {
    justify-content: flex-start;
  }

  .paragraph {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .container {
    flex-direction: column;
    justify-content: center;
  }

  .wrapper {
    flex-direction: column;
    display: flex;
  }

  .column {
    justify-content: flex-start;
  }
}


@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}