.static-splash-screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition-property: opacity;
  transition-duration: 500ms;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: wait;
  background-color: #0a0a0a;
  z-index: -1;
}

.static-splash-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 464px;
  height: 124px;
}

.static-splash-logo-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 1rem;
  border: 3px solid #404040;
  background-color: #171717;
}

.static-splash-logo-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #a3a3a395;
}