
body {
  margin: 0;
  background-color: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.logo-row {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 200px;
  height: auto;
  z-index: 1;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}
