*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	/* gör att margin etc ikluderas i W&H */
}
.logo{
	margin: 50px;
	height: 50px;
	width: auto;
}
h1, h2, h3{
	text-align: center;
}
.home{
	text-align: center;
	cursor: pointer;
}
.wrapper{
	display: flex;
	flex-flow: column;
	align-items: center;
}
.grid{
	display: grid;
	grid-template-columns: 210px 20px 210px 20px 210px;
	grid-template-rows: 240px 60px;
	justify-content: center;
	border:1px solid gray;
	border-radius: 10px;
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
	box-shadow: 8px 8px 2px 1px rgba(0, 0, 255, .2);
}
.grid p{
	display: block;
	align-self: center;
	font-size: 38px:
	color: black;
	text-align: center;
}
.board{
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
	height: 210px;
	width: 210px;
	border:1px dotted gray;
}
div[data-selected=true]{
	border: 1px solid red;	
}
.board div:first-child{
	margin-left: 5px;
}
.numeral{
	display: flex;
	width: 210px;
	justify-content: center;
	align-items: center;
	background: #e4f0f5;
	user-select: none;
}
.frame{
	display: flex;
	flex-flow: row nowrap;
}
.problem{
	display: flex;
	flex-flow: column;
	width: 400px;
	height: 400px;
	margin-right: 50px;
}
.problem-body{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;	
	margin-bottom: 30px;
}
.problem-answer{
	height: 36px;
	width: 36px;
	background-size: cover;
	visibility: hidden;
}
.problem-solution{
	background-image: url(../images/reverse.png);
	height: 36px;
	width: 36px;
	background-size: cover;
	visibility: hidden;
	cursor: pointer;
}
.problem-button{
	width: 100px;
	height: 50px;
	font-size: 14px;
	border: 4px double;
	border-radius: 20px;
	background: skyblue;
	color: white;
	visibility: hidden;
	margin-left: 50px;
	margin-right: 50px;
}
.problem-foot{
	width: 100%;
	height: auto;
}
.box{
	display: grid;
	width:140px;
	grid-template-columns: repeat(11, 20px);
	grid-template-rows: repeat(5, 20px);
	cursor: pointer;
}
.regleta{
	border: 1px solid gray;
	margin-bottom: 5px;
	cursor: pointer;
}
.box > div{
	border: 1px solid black;
	text-align: center;
}
.box div[data-nr='6']{
	grid-column: 1/ span 6;
	background-color: purple;
	color: white;
}
.box div[data-nr='4']{
	grid-column: 7/ span 4;
	background-color: red;
}
.box div[data-nr='7']{
	grid-column: 1/ span 7;
	background-color: black;
	color: white;
}
.box div[data-nr='3']{
	grid-column: 8/ span 3;
	background-color: lightblue;
}
.box div[data-nr='8']{
	grid-column: 1/ span 8;
	background-color: brown;
	color: white;
}
.box div[data-nr='2']{
	grid-column: 9/ span 2;
	background-color: pink;
}
.box div[data-nr='9']{
	grid-column: 1/ span 9;
	background-color: steelblue;
	color: white;
}
.box div[data-nr='1']{
	grid-column: 10/ span 1;
	background-color: ivory;
}
.box div[data-nr='10']{
	grid-column: 1/ span 10;
	background-color: limegreen;
	color: white;
}
.box div[data-nr='5']{
	grid-row: 1/ span 5;
	grid-column: 11/ span 1;
	background-color: yellow;
}
footer{
	text-align: center;
	margin: 50px;
}


