html {
    font-size: 16px;
    background-color: #f5f5f5;
}

main {
    position: relative;
    background-image: url('/assets/images/coming-soon-bg.png');
    background-position: 50% -80px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 33rem;
    padding-top: 12rem;
}

main::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100'><path fill='%23f5f5f5' d='M0,50 C150,0 150,100 300,50 C450,0 525,75 600,50 L600,100 L0,100 Z'/></svg>") no-repeat bottom;
  background-size: cover;
}

header {
    position: absolute;
    top: 6rem;
    left: 5rem;
}

main div {
    text-align: center;
}

.logo, h1, h2 {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    line-height: 1.6rem;
    text-shadow: rgba(0,0,0,.45) 0 0 3rem;
}

.logo, h2  {
    font-size: 1.6rem;
}

h1 {
    font-size: 4rem;
}

@media (max-width: 1025px) {
  html {
    font-size: 24px;
  }
}