body {
  position: relative;
  overflow: hidden;
  background-color: black;
  color: white;
  font-family: Times New Roman, serif;
  margin: 0;
  padding: 20px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: flex-start;
}

main {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("background.png");
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  background: white;
  color: black;
}

h1 {
  margin-top: 0;
  font-size: 32px;
  font-weight: normal;
  text-align: left;
}

hr {
  border: none;
  border-top: 1px solid white;
}
