#quote {
  color: white;
  padding: 0;
}
#demo {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #121516;
  margin: auto;
  overflow: hidden;
  align-items: center;
  font-family: "Space Mono", monospace;
}

#demo h3 {
  /* text-transform: uppercase; */
  position: absolute;
  /* font-weight: 700; */
  margin: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  visibility: hidden;
  font-size: 200px;
  top: 20vh;
}

/* Mobile and small screen responsive styles */
@media screen and (max-width: 768px) {
  #demo h3 {
    font-size: 80px; /* Reduced font size for mobile */
    top: 20vh; /* Center vertically better on small screens */
  }
}

/* Ensure text fits within viewport width */
@media screen and (max-height: 500px) {
  #demo h3 {
    font-size: 80px;
    top: 20vh;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  #demo {
    height: 100vh;
    padding: 0;
    margin: 0;
  }

  #demo h3 {
    font-size: 80px;
    top: 25vh;
  }
}
