body {
  margin: 0;
  padding: 0;
  overflow: hidden;       /* prevents scrolling */
  height: 100vh;
  background-color: black;
  font-family: 'Helvetica Neue', sans-serif;
  }

header {
  position: relative;
  padding: 2rem;
}

.title-left{
  position: absolute;
  top: 1rem;
  left: 2rem;
  text-align: left;
}

.title-image{
  width:120px;
  height: auto;
}

.web-name-hover-wrapper img {
  content: url('../ai-art-website_NEW/images/web-name.png');
  transition: 0.3s ease-in-out;
}

.web-name-hover-wrapper:hover img {
  content: url('../ai-art-website_NEW/images/yellow-web-name.png');
}

.svg-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
svg.responsive-svg {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  margin-top: 50px;
  font-size: 0.75rem;
  color: #666;
  position: fixed;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.description {
  /*background-color: #222;
  color: #FFD166;*/
  color: white;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  width: 180px;
  line-height: 1.2;
}

.tooltip-group:hover .description {
  opacity: 1;
}