* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  gap: 0px;
  box-sizing: border-box;
  /* outline: 1px solid black; */
}

.inner-btn {
  height: 62px;
  width: 62px;
  background-color: rgba(85, 34, 136, 0.873);
  border: none;
  border-radius: 5px;
  /* box-shadow: 0px 0px 5px 2px #666; */
  font-size: 40px;
  color: white;
  opacity: 1;
}

/* .inner-btn:hover {
  outline: 2px solid rgba(85, 34, 136, 0.873);
} */

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #a8dadc;
}

#matrix-body {
  width: 240px;
  height: 240px;
  /* background-color: #333; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 20px;
  zoom: 150%;
  background-image: linear-gradient(90deg, #2ec4b5b1, #ffbe69b8);
  border-radius: 20px;
  /* opacity: 0.75; */
  margin-bottom: 20px;
  box-shadow: 0px 0px 5px 1px #999;
}

#reset {
  background-color: #5b9dc1;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  padding: 6px;
  padding-inline: 15px;
  color: white;
  zoom: 180%;
  font-weight: bold;
}

#heading {
  margin-bottom: 30px;
  font-size: 50px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #07393C;
  font: bold;
}

#turn{
  font-size: 35px;
  color: #07393C;
  font: bold;
}

#won{
  position: absolute;
  height: 400px;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
/*   background-color: #8AEA92; */
  background-image: linear-gradient(#bde0fe, #a2d2ff, #219ebc);
  opacity: 1;
  border-radius: 50px;
  flex-direction: column;
  gap: 50px;
  visibility: hidden;
  box-shadow: 0px 0px 20px 1px #555;
}

#won h1 {
  opacity: 1;
  font-size: 40px;
  color: #29524A;
}

#playAgain {
  width: 220px;
  height: 60px;
  color: white;
  background-color: #29524A;
  border-radius: 20px;
  border: none;
  font-size: 30px;
}

#reset:hover{
  outline: 1px solid #333;
}

#playAgain:hover{
  outline: 3px solid #333;
}
