body, html {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
  background: #000;
}

canvas {
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
  cursor: pointer;
  z-index: 1;
}

.background-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 10vw;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5);
  z-index: 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  z-index: 1000;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 1.5rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #007bff;
}