body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

h1 {
  color: #ff69b4;
  text-align: center;
  margin-top: 2rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  padding-top: 80px;
}

.table {
  width: 100%; 
  max-width: 90%;
  border-collapse: collapse; 
  margin: 20px auto;
  text-align: center;
}

.table th, .table td {
  border: 1px solid #ff69b4;
  padding: 1.5em;
  text-align: center;
  width: 20%; 
}

.table th {
  background-color: #1a1a1a;
  color: #ff69b4;
}

.convention-container {
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
  display: flex;
  justify-content: center; 
}

.convention-table-body {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
} 

.convention-table-body td {
  width: 20%; 
  border: 1px solid #ff69b4;
  padding: 1.5em; 
}

.convention-table-body th {
  background-color: #1a1a1a;
  color: #ff69b4;
}

.convention-table-body tr:nth-child(even) {
  background-color: #2a2a2a;
}

.convention-table-body tr:hover {
  background-color: #3a3a3a;
}
