*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	/* gör att margin etc ikluderas i W&H */
}
.logo{
	margin: 50px;
	height: 50px;
	width: auto;
}
.wrapper{
	display: flex;
	justify-content: center;
}
article{
	display: grid;
	grid-template-columns: repeat(3, 250px);
	justify-items: center;
	border:1px solid gray;
	border-radius: 10px;
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
}
.box{
	display: flex;
	height: 200px;
	width: 200px;
}
.empty{
	display: flex;
	height: 200px;
	width: 200px;
}
.board{
	display: flex;
	height: 200px;
	width: 200px;
}
.box, .board > div:hover{
	cursor: pointer;
}
.regleta{
	border: 1px solid gray;
}
button{
	display: block;
	margin: 0 auto;
	margin-top: 30px;
	width: 100px;
	height: 50px;
	font-size: 14px;
	border: 4px double;
	border-radius: 20px;
	background: skyblue;
	color: white;
}
p{
	text-align: center;
	font-size: 18px;
	color: gray;
	margin-top: 20px;
	user-select: none;
}
footer{
	text-align: center;
	margin: 50px;
}
h1, h2, h3{
	text-align: center;
	user-select: none;
}