#play-area{
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items:center;
  aspect-ratio: 1 / 1;
  height: 90vh;
  outline: 5px solid black;
  border-radius: 20px;
  background-color: bisque;
}

img{
  width: 50px;
  height: 50px;
  z-index:999;
}

.checking{
  outline: 2px solid red;
}
.candidate{
  outline: 2px solid purple;
}

#win-screen{
  position: absolute;
  display: flex;
  visibility: hidden;
  flex-direction: row;
  justify-content: center; 
  align-items:center;
  aspect-ratio: 1 / 1;
  height: 90vh;
  outline: 5px solid black;
  border-radius: 20px;
  background-color: rgba(196, 162, 122, 0.8);
  z-index:1000;
  font-size: xx-large;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color:red;
  text-align: center;

}
