body {
  background-color: black;
  color: white;
  font-family: monospace;
  font-size: 40px; /* ← muuta tätä arvoa! */
  line-height: 3;
  margin: 0;
  padding: 20px;
}

.header {
  background-color: blue;
  color: yellow;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

.nav {
  background-color: red;
  color: white;
  padding: 5px;
  text-align: center;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.nav a:hover {
  color: cyan;
}

.content {
  margin-top: 20px;
  line-height: 1.4;
  min-height: 600px; /* lisää tilaa headerin ja footerin väliin */
}

.highlight {
  color: cyan;
}

.content i {
  font-size: 24px; /* pienempi kuin normaaliteksti */
  color: #ccc;     /* (valinnainen: vähän vaaleampi sävy) */
}

table.players {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: black;
  color: white;
  font-family: monospace;
  font-size: 14px;
}

table.players th,
table.players td {
  border: 1px solid cyan;
  padding: 6px;
  vertical-align: top;
}

table.players th {
  background-color: blue;
  color: yellow;
  text-align: left;
}

table.players tr:nth-child(even) {
  background-color: #111; /* vähän vaihtelua riveihin */
}



