body {
  margin: auto 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: radial-gradient(circle, #d5d5d5 0%, #000000 100%);
  color: #2e1a1a;
}

header {
  background: #333333;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

section {
  padding: 2rem;
  border-bottom: 3px dotted #3b3b3b;
}

h2 {
  color: #333333;
  font-size: 1.8rem;
}

article {
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid #a1a1a1;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lexend Deca', sans-serif;
  overflow-x: hidden;
}

canvas#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

header h1 {
  font-family: 'Monoton', cursive;
  font-size: 3rem;
  text-shadow: 0 0 10px #fff;
}

#menu button {font-size: 3em}



    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
      font-family: 'Lexend Deca', sans-serif;
    }
    .hidden {
      display: none;
    }
    main, footer, #top-graphic {
      max-width: 900px;
      width: 100%;
      padding: 1rem;
      box-sizing: border-box;
    }
    nav#menu {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }
    nav#menu button {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      cursor: pointer;
    }