.game-catalog_list {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  align-content: center;
  flex-wrap: wrap;
}
.game-catalog_list-item {
  margin-bottom: 20px;
  list-style-type: none;
  box-sizing: border-box;
  margin: 0 15px 15px 0;

  max-width: 240px;
}

.gamecard {
  border-radius: 10px;
  box-shadow: 0 2px 5px 0 #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.gamecard_window {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.gamecard_flags {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.game_flag {
  margin-left: 5px;
}

.gamecard_img {
  border-radius: 10px;
  max-width: 100%;
}

.gamecard_links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.gamecard_play {
  background-color: #62c23c;
  border: none;
  border-radius: 50px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: 'Manrope-Regular', sans-serif;
  font-size: 12px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  align-items: center;

  letter-spacing: 1px;
  line-height: 22px;
  outline: none;
  overflow: hidden;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gamecard_window {
  border-bottom: none;
  position: relative;
}
.gamecard_title {
  font-family: 'Manrope-Regular', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;

  padding: 0 5px;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
}