/* Reset default margin and padding */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: wheat;
  background-color: #0E121A !important;
}
.mb-30 {
    color: wheat !important;
}
/* Canvas for the animated background */
canvas {
  position: fixed; /* Fix canvas to viewport */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for centering */
  z-index: -1; /* Place behind content */
}

/* Content styling */
.content {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.content h1 {
  text-align: center;
}

.content p {
  line-height: 1.6;
  font-size: 2rem;
}
