body {
	font-family: Arial, sans-serif;
	text-align: center;
}
.main {
	background-color: white;
    width: max-content;
    margin: auto;
    padding: 20px;
    margin-top: 40px;
}
form {
	margin: 20px;
}
form > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
}
form button {
	width: max-content;
    padding: 7px 17px;
    background-color: cadetblue;
    border: solid 2px darkslategray;
    font-weight: 900;
	border-radius: 7px;
}
#backToMenu {
	background-color: salmon;
}
label {
    vertical-align: super;
    padding: 0 15px 0 5px;
}
h3 {
	margin: 10px;
}
span#tens {
    font-size: x-small;
}
#gameBoard {
	display: inline-block;
	margin: 20px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.cell {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	font-size: 20px;
	cursor: pointer;
	background-size: 100%;
	background-image: url(img/closed.svg);
}
.cell.pressed {
	background-image: url(img/type0.svg);
}
.revealed {
	background-image: url(img/type0.svg);
}
.flagged {
	background-image: url(img/flag.svg) !important;
}
.mineWrong {
	background-image: url(img/mine_wrong.svg) !important;
}
.mine {
	background-image: url(img/mine.svg) !important;
}