body {
    background-color: whitesmoke;    
}

.title {
    color: rgba(0,0,255,0.6);
    text-align: center;
}

.square {
    background-color: lightblue;
    border: 2px solid #333;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    outline: none;
}

.board {
    border: 4px solid darkblue;
    border-radius: 10px;
    height: 250px;
    width: 250px;
    margin: 0 auto;
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
}

.details{
    width: 200px;
    margin: 20px auto;
}

.button {
    background-color: lightblue;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

.footer {
    float: right;
    font-family: monospace;
    font-size: 20px;
}
p {
   font-size: 20px;
   font-family: sans-serif; 
}

.winner-class {
	font-size: 30px;
    color: red;
	background-color: yellow;
	font-weight: 900;
}
