body,
html {
  font-family: Charter, Georgia, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  background-image: url("/media/cit.png");
  background-size: 15%;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -2;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0); /* Semi-transparent black overlay */
  z-index: -1; /* Ensure the overlay is behind the content */
}
