    body {
      margin: 0;
      background: radial-gradient(ellipse at bottom, #0b0c10 0%, #000000 100%);
      overflow: hidden;
      height: 100vh;
    }
    
    canvas {
      display: block;
      width: 100%;
      height: 100%;
      background: transparent;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      pointer-events: none;
    }
  
  #title-screen {
    position: relative;
    bottom: 0%;
    }
  
  .title {
    color: white;
    font-size: 14em;
    width: 100%;
    filter: saturate(0);
    font-family: "Nabla", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "EDPT" 100, "EHLT" 12;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }


.container {
	max-height: 100vh;
	width: 33.33vw;
}

.list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.item {
	padding: 20px;
	opacity: 0.3;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	text-wrap: nowrap;
}

.item.active {
  opacity: 1;
}


@media screen and (max-width: 899px) {
  /* Styles to apply when the screen width is 899px or less */
   .title {
    color: white;
    font-size: 4em;
  }
}



@media screen and (max-width: 299px) {
  /* Styles to apply when the screen width is 899px or less */
   .title {
    color: white;
    font-size: 1em;
  }
}




