/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

#contentBox::after {
  content: "";
  display: block;
  clear: both;
}

.glow-button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  background-color: #222; /* dark base */
  color: white;
  border-radius: 5px;

  /* Glow effect */
  box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
  transition: all 0.3s;
}

.glow-button:hover {
  box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
  background-color: #111; /* darkens slightly on hover */
}

.glow-text {
  color: white;
  text-shadow: 0 0 5px #9b59b6, 0 0 10px #9b59b6, 0 0 20px #9b59b6;
}

.column-bg {
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4); /* same as glow-box background */
  margin-bottom: 20px;
  /* no glow here, just the background */
}