

html, body {
  min-height: 100%;
  height: 100%;
}

body {
  font-family: "Ms Madi", cursive;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  margin: 0;
}


#title {
  font-size: 86px;
  letter-spacing: 0.1em;
  z-index: 100;
  width: 100%;
  margin-bottom: 10px; /* Space between title and subtitle */
}

#sub-title {
  font-size: 46px;
	font-weight: bold;
  letter-spacing: 0.1em;
	margin-top:20px;
  z-index: 100;
}

/* Style the link inside #sub-title */
#sub-title a {
  color: rgba(255, 255, 255, 0.75); /* Keeps the link white */
  text-decoration: none; /* Removes underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

#sub-title a:hover {
  color: rgba(255, 255, 255, 1); /* Brightens on hover */
  text-decoration: underline; /* Underline effect on hover */
}


#canvas {
  position: absolute;
  left: 0;
  top: 0;
}