html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1a2f 0%, #000000 50%, #000000 50%);
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#circle {
  position: fixed;
  --circle-offset-y: 0px;
  width: 100px;
  height: 100px;
  background: rgb(0, 50, 106);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 20px 10px #190042;
  z-index: 2;

  opacity: 0;
  transition: opacity 0.15s ease;

  left: 0;
  top: 0;
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
}

#content {
  position: relative;
  z-index: 2;
  color: black;
  padding: 20px;
  text-align: center;
  cursor: none;
}



#content h1 {
  margin: 6px 0 4px;
}

#content p {
  margin: 0;
}

#content-hover {
  position: relative;
  z-index: 2;
  color: black;
  padding: 20px;
  cursor: none;
}

#content-hover:hover {
  color: blue;
}

#content-list {
  width: 400px;  
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#content-list li {
  padding: 10px;
  text-align: center;
}

#image-container {
  position: relative;
  transform: none;
  width: 250px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 20px 10px #1f0000;
  flex-shrink: 0;
}

#image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  #circle {
    width: 200px;
    height: 200px;
    box-shadow: 0 0 24px 12px #190042;
    --circle-offset-y: -100px;
  }
}
