body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
}

h1 {
    font-size: 24px;
    color: #ffcc00;
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background-color: #222;
}

th, td {
    padding: 10px;
    border: 1px solid #444;
}

th {
    background-color: #ffcc00;
    color: #000;
    font-size: 18px;
}

td {
    font-size: 16px;
}

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

