.body-menu{
  background: #43465c69;
}

.grid{
  padding: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fill , minmax(185px, 1fr));
  gap: 20px;
  height: calc(100vh - 65px);
}

.grid > div{
  background-color: rgb(0 0 0 / 58%);
  border-radius: 20px;
  cursor: pointer;
}

.inner-grid{
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: 2fr 1fr;
  align-items: center;
  color: #00e676;
}

@media only screen and (max-width: 750px){
  .inner-grid {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
  }
  i.large{
    font-size: 4rem !important;
  }
}

.inner-grid > div{
  justify-self: center;
}

.menu{
  font-size: 1.3rem;
}