:root {
  --color-bg1: rgb(22, 0, 33);
  --color-bg2: rgb(0, 4, 20);
  --color-interactive: 73, 82, 163;
  --circle-size: 80%;
  --blending: hard-light;
}
body {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  color: white;
}
.test-accessibility {
  display: grid;
  min-height: 100dvh;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  overflow: hidden;
}
.interactive {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color-interactive), 0.8) 0,
      rgba(var(--color-interactive), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  pointer-events: none;
  opacity: 0.7;
}
.test-accessibility_content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
li {
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.387);
}
a {
  text-decoration: none;
  color: white;
}
img {
  max-width: 10%;
  height: auto;
  margin-right: 5px;
}
