@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,800&display=swap");

:root {
  --bg: #0f000a;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background-color: var(--bg);
  overflow: hidden;
}

.page {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo {
  display: block;
  width: min(70vw, 620px);
  height: auto;
}

.brand-name {
  margin: 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 30pt;
  line-height: 1;
  color: #ff2bb9;
}
