body {
  background-color: #000000;
  color: #E90064;
  font-family: sans-serif;
  margin: 0;
  background-image: url('assets/spiral.gif'); /* Replace with actual image path */
  background-size: cover; /* Scale image to cover entire background */
  background-position: center center; /* Center image horizontally and vertically */
  display: flex; /* Use flexbox for easy centering */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  min-height: 100vh; /* Make body at least as tall as viewport */
}

.header {
  color: #B3005E;
  text-align: center;
  padding: 0.1em 0;
}

.main {
  background-color: #060047;
  border: 1px solid #E90064;
  border-radius: 10px; 
  text-align: center;
  margin: auto;
  width: 75%;
  padding: 20px;
  opacity: 0.7;
}

.footer {
  text-align: center;
  padding: 1em 0;
  clear: both;
  position: fixed;
  bottom: 0;
  width: 100%
}

a {
  color: #FF5F9E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}