body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

#container {
  max-width: 1000px;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

header {
  background-color: #9966CB;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

nav {
  text-align: center;
  margin: 15px 0;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #9966CB;
  font-weight: bold;
}

h1, h2 {
  text-align: center;
}

h2 {
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 5px;
}

figure {
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th {
  background-color: #4a90e2;
  color: white;
  padding: 12px;
  text-align: left;
}

td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-top: 30px;
}