:root {
  background-color: black;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
}
html {
  height: -webkit-fill-available;
}
body {
  margin: 0;
  height: -webkit-fill-available;
}
a {
  color: inherit;
}

.wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
.coming-soon {
  width: 32ch;
  max-width: 90vw;
  background-color: #99c68b;
  color: black;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  h1,
  p {
    margin: 0;
  }

  .right {
    align-self: flex-end;
  }
}

@media screen and (max-width: 500px) {
  .wrapper {
    padding: 1rem;
  }
  .coming-soon {
    padding: 1rem;
    width: 100%;
  }
}
