/* General Styles */
body {
  background: url('https://www.transparenttextures.com/patterns/asfalt.png');
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  text-align: center;
}

h1 {
  color: #ff007f;
  text-shadow: 2px 2px 0 #00ff00;
}

button {
  margin: 20px;
  padding: 10px 20px;
  font-size: 1em;
  background-color: #ff00ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #e600e6;
}

/* Table Styles */
table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

th, td {
  border: 3px solid #ff00ff;
  padding: 12px;
  color: #0000ff;
  background-color: #e0e0e0;
}

th {
  background-color: #ff00ff;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2em;
}

td {
  font-size: 1em;
  text-align: center;
}

