@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap');

body{
    background-color: darkcyan;
    display: flex;
    justify-content: center; 
    align-items: center;     
    height: 100vh;           
    margin: 0;
    color: #252524;
}

#gameContainer{
    text-align: center;
    box-shadow: 6px 6px 0px #252524;
}

#gameBoard{
    border: 4px solid #252524;
    vertical-align: top;
}

.window-title-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
    margin: auto;
    border: 4px solid #252524;
    background-color: #f9f1e8;
}

.bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
    margin: auto;
    border: 4px solid #252524;
    background-color: #f9f1e8;
}

.window-title{
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    font-size: 1.25rem;
    margin-left: 8px;
}

.window-buttons {
    display: flex;
    gap: 4px;
    margin-right: 4px;
}

.window-button {
    font-size: 18px;
    color: #252524;
    background: none;
    border: 2px solid #252524;
    cursor: pointer;
    width: 24px; 
    height: 24px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f1e8; 
}

.window-button:focus,
.window-button:focus-visible {
    outline: none;
}

#scoreText{
    font-family: 'Roboto Mono', monospace;
    font-size: 42px;
    font-weight: 500;
    margin: 4px;
    margin-left: 16px;
}

#resetButton{
    font-family: 'Roboto Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    width: 100px;
    height: 54px;
    border: 2px solid #252524;
    cursor: pointer;
    margin: 4px;
    border-radius: 0;

    background: #f9f1e8;
    color: #252524;
    transition: background 0.5s, color 0.5s;
}

#resetButton:hover {
    background: tomato;
    color: #f9f1e8;
    border: 2px solid tomato;
}

#resetButton:focus,
#resetButton:focus-visible {
    outline: none;
}