body {
  background-color: gray;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Times New Roman", Times, serif;

}

#heading{
  position:fixed;
  top: 10px;
  right: 500px;
  font-family:cursive;
  margin: 20px;
  font-size: 35px;
}

#board {
  text-align: center;
  background-color:rgb(152, 102, 139);
  height: 500px;
  width: 400px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
}
#block {
  display: grid;
  grid-template-rows: repeat(3, 100px);
  grid-template-columns: repeat(3, 100px);
  gap: 10px;
  margin: 20px;
}

.cell {
  height: 100px;
  width: 100px;
  background-color: white;
  border-radius: 8px;
  font-size: 80px;
  text-align: center;
}

button {
  background-color: rgb(6, 171, 6);
  height: 40px;
  width: 150px;
  border: none;
  color: white;
  outline: none;
  border-radius: 5px;
}

img {
  height: 450px;
  width: auto;
  margin: 80px;
}

.cimg1,
.cimg2 {
  transform: scale(1.2);
}



.btn {
  height: 50px;
  width: 300px;
  background-color: black;
  position: absolute;
  bottom: 70px;
}

.imgwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

