@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

#header-container {
    text-align: center;
    margin-bottom: 20px;
}

#header-container p {
    font-size: 18px;
    margin: 0;
    color: #333;
}

#header-container h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#header-container h2 {
    font-size: 20px;
    margin: 0;
    color: #666;
}

#game-container {
    position: relative;
}

#game-board {
    border: 2px solid #000;
}

#controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
    margin-top: 20px;
}

button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}

#controls-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 200px;
    margin-top: 20px;
    gap: 10px;
}

button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button:focus {
    outline: none;
}