body {
	margin: 0;
}

* body {
	box-sizing: border-box;
}

.board {
	width: 100vw;
	height: 100vh;
	background-color: rgb(175, 115, 207);
}

.btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transition: 0.09s;
	width: 100px;
	height: 50px;
	font-size: 15px;
	border-radius: 10px;
	border: none;
	outline: none;
	text-transform: uppercase;
	box-shadow: rgb(0, 0, 0, 0.35) 0 5px 15px;
}

.yes{
	position: absolute;
	left: 40%;
	top: 50%;
	transition: 0.09s;
	width: 100px;
	height: 50px;
	font-size: 15px;
	border-radius: 10px;
	border: none;
	outline: none;
	text-transform: uppercase;
	box-shadow: rgb(0, 0, 0, 0.35) 0 5px 15px;
}

h1 {
	position: absolute;
	top: 30%;
	left: 50%; /* Положение в середине по горизонтали */
	transform: translateX(-50%); /* Сдвигаем элемент на половину его ширины влево */
	color: bisque;
}


