.section{
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.section_goal{
  width: 100%;
  position: relative;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_title{
  width: 100%;
  text-align: center;
  display: none;
  background-color: var(--accent);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.section_goal-game{
  width: 50vw;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--dark-primary); */
  border-radius: 5px;
  /* padding: 5px 10px; */
  margin-bottom: 20px;
}
.hands{
  width: 50%;
  height: 33%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.hands_punch{
  width: 100px;
  height: 100px;
}
.hand{
  position: relative;
  margin: 10px;
}
.hands_goal{
  position: absolute;
  align-self: center;
  width: 20px;
  height: 20px;
  top: 30px;
  left: 45px;
}
.section_goal-btnDiv{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 5px;
}
.section_goal-btn{
  width: 49%;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid var(--dark-primary);
  background-color: var(--primary);
  color: var(--lighter-gray);
    cursor: pointer;
}
/* .section_goal-chance{
  background-color: var(--accent);
}
.section_goal-reset{
  background-color: var(--secondary);
} */




@media (max-width: 900px) {
  body{
    height: max-content !important;
  }
.section {
  width: 50%;
}
}

@media (max-width: 550px) {

.section {
  width: 70%;
}
.hands{
  width: 150%;
}
}