body {
    background-image: url("chess.jpeg");
    background-repeat: no-repeat;
    background-color: black;
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
}

.container {
    width: 50%;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.6);
    margin: auto;
    border: 3px solid #FAF9F6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #FAF9F6;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2 {
    color: #FAF9F6;
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}

p {
    color: #FAF9F6;
    font-style: italic;
}

button {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FAF9F6;
    font-weight: bold;
    width: 200px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#increment-btn {
    background: #575757;
}

#save-btn {
    background: darkgreen;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
