body {
  margin: 0;
  min-height: 100vh;
  background-color: #05070d;
  overflow: hidden;
  color: white;
  font-family: Arial, sans-serif;
}
.stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.star {
  position: absolute;
  background-color: white;
  width: 3px;
  height: 3px;
  opacity: 0.5;
  border-radius: 50%;
  animation: fall linear infinite;
}
@keyframes fall {
  from {
    transform: translateY(-10vh);
    opacity: 0.5;
  }
  to {
    transform: translateY(100vh);
    opacity: 0;
  }
}
.company {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 420px);
  text-align: center;
}
.company h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}
.company-info {
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}
.company-info address {
  font-style: normal;
}
.company-info dl {
  display: grid;
  gap: 4px;
  margin: 16px 0 0;
}
.company-info dl div {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.company-info dt,
.company-info dd {
  margin: 0;
}
.company-info dt {
  font-weight: bold;
}

@media (prefers-reduced-motion: reduce) {
  .star {
    animation: none;
    display: none;
  }
}
