/* General Body Styles */
body {
  background-color: black;
  color: cyan;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Glowing border around the whole body */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid transparent;
  z-index: -1;
  animation: border-glow 1.5s infinite alternate;
  box-shadow: 0 0 5px cyan, 0 0 20px cyan;
}

/* Border glow animation */
@keyframes border-glow {
  0% {
    box-shadow: 0 0 5px cyan, 0 0 10px cyan;
  }
  100% {
    box-shadow: 0 0 20px cyan, 0 0 40px cyan;
  }
}

/* Table Styles */
table {
  border-collapse: collapse;
  border-spacing: 20px;
  border-radius: 8px; /* Rounded corners */
  width: 80%;
  margin: 0 auto;
  background-color: #000000;
  padding: 20px;
}

th, td {
  padding: 25px;
  text-align: center;
  vertical-align: middle;
  background-color: #000000;
  border: 1px solid cyan;
}
/* Navigation Bar Styling */
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
  background-color: #000000;
  margin-top: 40px;
  margin-bottom: 60px;
}

.nav li {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 2px solid #00ff00;
  border-radius: 8px;
  background-color: #000000;
  color: #00ff00;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 255, 0, 0.2);
}

.nav a {
  text-decoration: none;
  color: #00ff00;
  font-weight: bold;
  font-size: 1.5em;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.nav a:hover {
  color: red;
  transform: scale(1.1);
  background-color: #111;
}

/* Pages to Make List */
.pages-to-make {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pages-to-make a {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
}

/* Glowing Heading */
h1 {
  font-size: 3em;
  margin-bottom: 60px;
  text-shadow: 0 0 10px cyan, 0 0 20px cyan;
}

/* Paragraph Styles */
p {
  font-size: 1.2em;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px cyan;
  margin-top: 40px;
}