main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 100vh;
  max-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  padding-top: 60px;
}
@media screen and (max-width: 1060px) {
  main {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}

section {
  width: 100%;
  height: 100%;
  padding: 1rem;
  max-width: none;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.page-title * {
  display: block;
  width: 100%;
  max-width: 700px;
  text-align: center;
}
.page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}
.page-title p {
  font-size: 0.8rem;
  color: #999;
  text-indent: 0.1rem;
}
@media screen and (max-width: 1060px) {
  .page-title * {
    text-align: center;
  }
}

#games {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
}
@media screen and (max-width: 1060px) {
  #games {
    height: auto;
    background-color: red;
    grid-template-columns: 1fr 1fr;
  }
}
#games .cover {
  width: 100%;
  min-height: 40vh;
  position: relative;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  transform: rotateY(90deg);
  opacity: 0;
  transition: all 0.5s;
}
#games .cover.hover {
  transform: translateY(-5%);
  opacity: 1;
}
#games .cover .title {
  pointer-events: none;
  width: auto;
  max-width: 95%;
  height: auto;
  max-height: 120px;
  z-index: 5;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 2%);
  opacity: 0;
  bottom: 100px;
  transition: all 0.5s;
  transition-delay: 0.5s;
}
#games.activated .cover {
  transform: rotateY(0deg);
  opacity: 1;
}
#games.activated .cover .title {
  transform: translate(-50%, 20%);
  opacity: 1;
}
#games.activated .cover:hover .title {
  filter: grayscale(0);
  /*opacity: 1;*/
}
#games.activated:hover .cover {
  filter: grayscale(1);
}
#games.activated:hover .cover:hover {
  filter: grayscale(0);
}

/*# sourceMappingURL=games.css.map */
