:root {
  --black: #050505;
  --white: #ffffff;
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.coming-soon {
  min-height: 100svh;
}

.hero {
  min-height: 100svh;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.brand {
  display: block;
  width: min(330px, 72vw);
  height: auto;
}

h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
