.section{
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.section_memory{
  position: relative;
  width: 100%;
  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_memory-game{
  width: 50vw;
  height: 50vh;
  display: grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows: repeat(4,1fr );
  /* border: 1px solid var(--dark-primary); */
  border-radius: 5px;
  /* padding: 5px 10px; */
  margin-bottom: 20px;
}
.memory_card{
    width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3px;
  padding: 3px;
}
.memory_img{
  width: 60px;
  height: 70px;
}

/* .section_memory-chance{
  background-color: var(--accent);
}
.section_memory-reset{
  background-color: var(--secondary);
} */




@media (max-width: 900px) {
  body{
    height: max-content !important;
  }
.section {
  width: 50%;
}
}

@media (max-width: 550px) {

.section {
  width: 70%;
}

.section_memory-game{
  width: 100vw;
}
}