@charset "UTF-8";

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-button {
    display: inline-block;
    padding: 3px 6px;
	margin-bottom: 10px;
    border: 1px solid black;
    text-decoration: none;
}

#board {
    display: grid;
    grid-template-columns: repeat(20, 30px);
}

.cell {
    width: 30px;
    height: 30px;
	color: black;
	font-size: 20px;
	background-color: grey;
}

.open{
	background-color: white;
}

.zero{

}

.bomb{

}

.highlight {
    background-color: lightblue;
}

.flag{
	background-color: red;
}

.answer{
	background-color: green;
}

.miss{
	background-color: orange;
}




