html,body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  background-color: #000000;
  background-image: radial-gradient(circle at center, #1d1d1d 0%, #000000 70%);
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  width: min(60vw, 700px);
  height: auto;
  aspect-ratio: 639 / 292;
}
