board {
flex-grow: 1.0;
background-color: #303030;
}
.row {
flex-grow: 1.0;
margin-top: 1px;
margin-bottom: 1px;
}
.square {
flex-grow: 1.0;
background-color: #808080;
margin-left: 1px;
margin-right: 1px;
text-justify: center;
font-size: 70;
}
.overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: white;
opacity: 0.0;
align-items: center;
justify-content: space-evenly;
}
.overlay:checked {
opacity: 0.8;
transition: opacity 0.5 0.0;
}
.winner {
align-self: stretch;
height: 30px;
color: black;
text-justify: center;
font-size: 50;
}
.replay {
width: 100px;
height: 30px;
background-color: #ff5e1a;
border-radius: 3px;
text-justify: center;
}
.replay:hover {
background-color: #ff7033;
}
.replay:active {
background-color: #c45f00;
}