.hero-header {
  border-bottom: #fff 2px solid;
  padding: 0 25px 20px 25px;
  margin-bottom: 72px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  text-align: center;
  margin-bottom: 50px;
}

.hero-description {
  text-align: center;
  width: unset;
}

.view-all {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 50px;
}

.games {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 75%;
}

.game-title {
  font-size: 20px;
  margin-bottom: 8px;
  text-align: left;
}

.game-info {
  border: #fff 2px solid;
  height: 192px;
  background-color: #0000;
  margin-bottom: 20px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;

  color: #fff;
  text-decoration: none;
}

.game-info>div {
  margin-left: 16px;
  padding: 8px 30px 8px 16px;
  max-height: 128px;
}

.game-description {
  font-size: 13px;
  max-height: 300px;

  width: unset;
  margin-bottom: 0;
}

.game-thumbnail {
  width: 188px;
  height: 188px;
  object-fit: cover;
  margin: 0;
}

.artworks {
  display: flex;
  flex-direction: row;

  flex-wrap: wrap;
  width: 90%;
  row-gap: 24px;
  column-gap: 24px;

  align-items: start;
  justify-content: center;
  align-content: start;
}

.art {
  width: 192px;
  height: 192px;
  margin: 0;
  object-fit: cover;
}

.artworks .box-button {
  display: inline-block;
  width: 192px;
  height: 192px;
}

.box-button:link,
.box-button:visited {
  color: #fff;
  transition: all 0.1s ease-in;
}

.box-button:hover {
  color: #fff;
  transform: scale(101.5%);
  box-shadow: 0 0 12px #777;
}

.external-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  column-gap: 32px;
  row-gap: 4px;
}

.album {
width: 48px;
height: 48px;
margin: 0;

object-fit: cover;
}

.song {
display: flex;
flex-direction: row;
height: 48px;

align-items: center;
justify-content: start;
gap: 12px;

margin-bottom: 10px;
}

.song-title:link,
.song-title:visited {
font-weight: 500;
letter-spacing: -0.5px;
font-size: 18px;

  color: #fff;
  text-decoration: none;
  transition: color 0.1s ease-in-out;
}

.song-title:hover {
  color: #b8eaff;
}

.song-title:active {
  color: #66abff;
}

@media only screen and (max-width: 450px) {
  .hero-title {
      margin-bottom: 28px;
  }

  .game-info {
      flex-direction: column;

      height: unset;
      width: 192px;
  }

  .game-info>div {
      padding: 8px 10px;
      margin: 0 3px;
      max-height: unset;

      display: flex;
      align-items: center;
      flex-direction: column;
  }

  .game-thumbnail {
      width: 188px;
      height: 188px;
  }

  .game-info>div>h4 {
      text-align: center;

      margin-bottom: 5px;
  }

  .external-links {
      flex-direction: column;
  }
}