.cell {
	margin-top: -1px;
	margin: 0px;
	width: max(100px, 5vw);
	height: max(100px, 5vw);
	font-size: max(50px, 2vw);
	cursor: pointer;
	background: none;
	border: 2px solid #484854;
}

.cell.left {
	border-left: none;
}

.cell.right {
	border-right: none;
}

.cell.bottom {
	border-bottom: none;
}

.cell.top {
	border-top: none;
}

.tictactoe-board {
	display: grid;
	margin-top: 30px;
}

.row {
	display: flex;
}
