@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.coming-soon {
  width: 100dvw;
  height: 100dvh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  img {
    height: 200px;

    @media (max-width: 800px) {
      height: 150px;
    }
  }

  h1 {
    font-family: "Montserrat", sans-serif;
    color: rgb(162, 176, 141);
    font-weight: 100;
    margin-top: 10px;

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