.lightMemory__funcPad {
  display: grid;
  background-color: #2d2d2d;
}

.lightMemory__funcPad button {
  grid-row: 1/2;
  margin: 10px;
  width: max-content;
}

.lightMemory__funcPad p {
  grid-row: 2/3;
  margin: 10px;
}

.lightMemory__buttonPad {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  margin-top: 20px;
  padding: 15px;
  background-color: #2d2d2d;
}

.lightMemory__padDiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightMemory__light {
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  box-shadow: 0px 0px 26px 26px white;
}

.lightMemory__pad {
  display: block;
  margin: 15px;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.lightMemory__pad--click {
  opacity: 0.35;
}

.lightMemory__pad:active {
  filter: opacity(0.5);
}

@media only screen and (min-width: 600px) {
  .lightMemory__funcPad {
    display: inline-flex;
    margin: 50px;
    border-radius: 20px;
  }
  .lightMemory__funcPad button {
    margin: 15px;
  }
  .lightMemory__funcPad p {
    margin: auto 15px;
  }
  .lightMemory__buttonPad {
    display: inline-flex;
    margin: 50px;
    border-radius: 20px;
  }
}
