*{
	margin: 0;
	box-sizing: border-box;
}
.element{
	width: 100%; 
	height: 100px; 
	border: 1px solid black; 
	border-radius: 3px; 
	margin: 2px;
	cursor: pointer;
	box-sizing: border-box;
	transition: all 0.25s ease;
}
.element:hover{
	border: 2px solid blue;
}
.element.highlighted{
	transform: scale(1.1);
}
.wrap{
	display: flex;
	justify-content: center;
	min-width: 320px;
}
.content{
	width: 300px;
	position: relative;
	padding-top: 10px;
}
.row{
	display: flex;
	justify-content: center;
}
.row2{
	padding: 5px;
}
button{
	padding: 15px;
    border: 1px solid lightcoral;
    background-color: lightcoral;
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 800;
    color: ghostwhite;
}
button:hover{
	color:  white;
}
label{
	margin: 0px 5px;
}
.board{
	position: relative;
}
#message{
	display: none;
	position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;	    
    width: 300px;
    text-align: center;
    margin-left: -150px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: scale(10);
    color: red;
    font-size: 36px;
    height: 72px;
    margin-top: -36px;
    line-height: 72px;
}