@font-face {
  font-family: 'adelia';
  src: url('/fonts/adelia-webfont.woff2') format('woff2'),
    url('/fonts/adelia-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'antiga';
  src: url('/fonts/antiga-regular-webfont.woff2') format('woff2'),
    url('/fonts/antiga-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'diamond_ringhairline';
  src: url('/fonts/diamond-ring-hairline-webfont.woff2') format('woff2'),
    url('/fonts/diamond-ring-hairline-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'helvetica';
  src: url('/fonts/helvetica-webfont.woff2') format('woff2'),
    url('/fonts/helvetica-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-image: url(images/main-bg-1200.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #545454;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(
    to right,
    rgba(250, 250, 250, 0.8),
    rgba(250, 250, 250, 0.8)
  );
  background-size: 400% 400%;
}

.header {
  width: 100%;
  text-align: center;
}

h1 {
  font-family: 'antiga', sans-serif;
  font-size: 12rem;
  font-weight: 200;
  margin: 0 2rem;
}

h2 {
  font-family: 'diamond_ringhairline', sans-serif;
  color: black;
  font-size: 5rem;
  font-weight: 200;
  margin: 0 2rem;
}

.established {
  font-family: 'helvetica', sans-serif;
  font-size: 2rem;
  font-weight: 100;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  padding: 0 4rem;
}

.es,
.twenty {
  margin: 0 0 1rem;
}

.td,
.twentytwo {
  margin: 1rem 0 0;
}

.left-estd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid black;
  padding: 0 1rem;
}

.right-estd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid black;
  padding: 0 1rem;
}

.middle-estd {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-mobile-text {
  display: none;
  text-align: center;
  font-family: 'adelia', sans-serif;
  font-size: 2.5rem;
  margin: 0 auto;
  animation: scale 2s ease infinite;
  padding: 0 2rem;
}

.images {
  height: 20rem;
  margin: auto 0;
  filter: contrast(1);
}

.coming-soon {
  text-align: center;
}

.coming-soon-text {
  width: max-content;
  text-align: center;
  font-family: 'adelia', sans-serif;
  font-size: 4rem;
  margin: 0 auto;
  animation: scale 2s ease infinite;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

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

  h2 {
    font-size: 3rem;
  }
  .coming-soon-text {
    font-size: 2rem;
  }

  .established {
    font-size: 1.5rem;
    margin: 3rem 0;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .coming-soon-text {
    display: none;
  }

  .coming-soon-mobile-text {
    display: block;
    font-size: 2rem;
  }

  .established {
    font-size: 1.1rem;
    margin: 8rem 0;
  }

  .es,
  .twenty {
    margin: 0 0 0.5rem;
  }

  .twenty {
    margin: 0 0 0.5rem;
  }
}
