* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #e5e5e5;
  display: flex;
  height: 100vh;
}
.main {
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  height: 600px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-2 {
  width: 400px;
  height: 600px;
  background-color: white;
  margin-top: 5%;
  border-radius: 40%;
  margin-left: auto;
  margin-right: auto;
}
.rivalBtn,
.myBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
  text-decoration: none;
  position: relative;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

li {
  list-style-type: none;
}
/* margin-left: auto;
    margin-right: auto; */
.playground {
  height: 21.875rem;
  width: 80%;
  position: absolute;
  bottom: 20%;
  left: 10%;
  border-radius: 20px;
  background-color: rgba(248, 188, 119, 0.959);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.rivalbox,
.mybox {
  height: 100px;
  width: 70px;
  border: 5px dashed white;
  display: flex;
  justify-content: center;
}
.result {
  height: 50px;
  width: 100px;
  background-color: #e5e5e5;
  border-radius: 5px;
  text-align: center;
  padding-top: 3%;
  font-family: monospace;
  font-weight: 700;
}
.result:hover {
  background-color: white;
  cursor: pointer;
}
