@font-face {
    font-family: "Montserrat";
    src: url("font/Montserrat-Regular.ttf");
  }

body {
    background-color: green;
    background-image: url("tic-tac-toe.jpg");
    background-size: 165%;
}

h1 {
    width: 20%;
    margin: 2% auto;
    text-align: center;
    color: rgb(0, 32, 0);
}

.gameBoard {
    width: 300px;
    height: 300px;
    margin: 20px 0;
    margin-left: 10px;
    border: 5px solid rgb(0, 32, 0);
    font-size: 60px;
    line-height: 98px;
    font-family: 'Montserrat',serif;
    float: left;
}

.field {
    width: 98px;
    height: 98px;
    border: 1px solid darkgreen;
    color: transparent;
    user-select: none;
    float: left;
}

.message{
    width: 300px;
    height: 50px;
    margin: auto;
    border: 2px solid rgb(0,32,0);
    line-height: 50px;
    clear: both;
}

.player {
    width: 100px;
    margin: 5px;
    float: left;
}

input {
    width: 100px;
    margin: 10px 0;
    background-color: green;
    border: 2px solid rgb(0, 32, 0);
}

.display {
    width: 550px;
    margin: auto;
    text-align: center;
    font-size: 20px;
    font-style: bold;
}

#a {
    color: darkred;
}

#b {
    color: rgb(0, 32, 0);
}

button {
    width: 100px;
    height: 50px;
    background-color: green;
    color: rgb(0, 32, 0);
    font-size: 20px;
    font-style: bold;
    border-color: rgb(0, 32, 0);
    margin: 5px;
}

button:hover {
    background-color: rgb(0, 32, 0);
    color: green;
}