body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* White text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: #1e1e1e; /* Slightly lighter dark gray for contrast */
  padding: 30px 10%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* Deeper shadow */
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #8b04b4; /* Accent color */
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  color: #ffffff;
  background-color: #8b04b4; /* Teal accent */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #8b04b4;
}

.icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 15%; /* Rounded edges */
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.icon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #8b04b4;
}

/* Make the canvas cover the entire screen */
#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it stays behind the content */
  pointer-events: none; /* Prevent mouse interactions */
}