body {
  background: linear-gradient(to bottom, #0000FF, #FFFFFF);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  color: white;
  font-family: Verdana, sans-serif;
}

header {
  text-align: center;
  font-size: 2em;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  padding: 20px 0;
}

#container {
  max-width: 1000px; /* Use max-width for better resizing */
  margin: auto;
  padding: 20px;
}

#content {
  display: flex;
  gap: 30px;
}

nav {
  width: 200px;
  background-color: #964A8E;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffff;
  height: fit-content;
}

nav a {
  color: #ff00ff;
  text-decoration: none;
  display: block;
  margin: 15px 0;
  font-weight: bold;
  transition: all 0.3s ease; 
}

nav a:hover {
  color: #00ffff;             
  text-shadow: 0 0 10px #00ffff;
  transform: translateX(8px); 
  cursor: pointer;
}

.about-card {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  padding: 30px;
  border-radius: 15px;
  line-height: 1.6;
  border: 1px solid #00ffff;
  flex: 1;
}

.about-card h2 {
  color: #00ffff;
  margin-top: 0;
}

.about-card p {
  font-size: 18px;
  margin-bottom: 15px;
}