* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #071d23;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.page-shell {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #071d23;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
