:root {
  --fonts--primary: Sora, sans-serif;
  --color--white: white;
  --fonts--secondary: "Instrument Serif", sans-serif;
  --color--gray: #1f2020;
  --color--gray-text: #4d4d4d;
}

body {
  font-family: var(--fonts--primary);
  color: var(--color--white);
  font-size: .625rem;
  font-weight: 400;
  line-height: 1;
}

h1 {
  font-family: var(--fonts--secondary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: var(--color--white);
  text-decoration: none;
}

.main_wrapper {
  background-color: var(--color--gray);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.comingsoon {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  max-width: 1024px;
  height: 100vh;
  display: flex;
}

.comingsoon_wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.logo_wrapper {
  flex: none;
  width: 15.25rem;
  height: 2.75rem;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.heading_wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.big-email {
  font-family: var(--fonts--secondary);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
}

.services_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--color--gray-text);
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .comingsoon {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .comingsoon {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5rem;
  }

  .comingsoon_wrapper {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .heading_wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .services_wrapper {
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  .comingsoon {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


