/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #000;
}

html, body {
  background: var(--bg);
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

main {
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
  display: flex;
}

.header {
  margin-bottom: 2rem;
}

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

.hero {
  aspect-ratio: 1;
  background: #000;
  width: 100%;
  max-width: min(100%, 896px);
  position: relative;
}

.heroImage {
  object-fit: contain;
  object-position: center;
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/