@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.page {
  display: grid;
  width: 100vw;
  height: 100vh;
  gap: 40px;
  background-color: #222;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}
.brand-name {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.divider {
  width: 330px;
  height: 1px;
  background-color: #aaa;
}

.coming-soon {
  font-size: 1.5rem;
  color: rgb(229, 231, 94);
  text-align: center;
}
