/* main.css */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');


 
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    color: #333;
    margin: 20px 0 10px;
}

p {
    font-size: 1.2em;
    text-align: center;
    margin: 10px 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    font-size: 1.1em;
    margin: 5px 0;
}

.scoreboard {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    font-size: 2em;
    padding: 10px;
}

tfoot th {
    font-size: 1.2em;
    color: #777;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1.1em;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

#status {
    margin-top: 20px;
    font-family: 'Press Start 2P', cursive; 
    font-size: 1.5em;
    text-align: center;
    background-color: #222; 
    padding: 10px;
    border-radius: 10px;
    width: 300px; 
}