body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  /* You can choose any font you like */
  text-align: center;
  /* Center align text */
  background-color: #121212;
  color: #ffffff;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  /* Adjust width as needed */
}

.centered {
  font-size: 50px;
  /* Adjust the font size as needed */
}

.item-list {
  list-style: none;
  /* Removes default list bullets */
  padding: 0;
}

.item-list li {
  font-size: 24px;
  /* Adjust list item font size as needed */
  margin-top: 10px;
  /* Space between list items */
}

.item-list a {
  color: #e0e0e0;
  /* Light grey color for better readability in dark mode */
  text-decoration: none;
  /* Removes underline */
}

.item-list a:hover,
.item-list a:active {
  text-decoration: underline;
  /* Optional: adds underline on hover if desired */
  color: #ffffff;
  /* Brighten on hover */
}