body {
    font-family: arial;
}

#welcome-header {
    text-align: center; 
    justify-content: center;
}

.start-button {
    display: block;
    align-items: center;
    border-color: gold;
    background-color: yellow;
    color: black;
}

.start-button:hover {
    background-color: white;
}

.start-button-link {
    text-decoration: none;
    color: black;
}

#player-1-score,
#player-2-score {
    font-size: 1.2em;
    font-weight: bold;
}

#player-1-score {
    text-align: left;
}

button {
    background-color: #003366;
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    justify-content: center;
    display: block;
    margin: 0 auto;
}

button:hover {
    background-color: #004c99;
    transform: scale(1.05);
}

#current-player {
    clear: both;
    display: block;
    text-align: center;
    margin-top: 5px;
    padding-top: 5px;
}

#board {
    margin: 30px auto;
    width: 90%;
    max-width: 100%;
}

table {
    width: 100%;
    background-color: #004080;
}

#table-header {
    color: white;
}

th, td {
    padding: 15px;
    border: 2px solid #00264d;
    color: white;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

#game-h1 {
    text-shadow: 2px 2px 4px black;
    color: gold;
    justify-content: center;
    text-align: center;
}

#player-2-score {
    text-align: right;
}