body {
  width: 100%;
  background: linear-gradient(90deg, #04182c, #000c17, #04182c);
  padding: 0;
  margin: 0;
  position: relative;
}

div {
  box-sizing: border-box;
}

.root {
  width: 100%;
  min-height: 100vh;
  padding: 36px;
  color: white;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

.logo {
  width: 40px;
  margin-right: 20px;
}


.games_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.games_list>a {
  text-decoration: none;
}

.game_item {
  width: 240px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid rgba(53, 162, 253, .267);
  border-radius: 12px;
  padding: 8px;
  margin-right: 24px;
  margin-bottom: 24px;


}

.game_item>img {
  width: 100%;
  height: 240px;
  vertical-align: middle;
  border-radius: 12px;
  border: none;
  object-fit: revert;
  transition: all 0.3s;
}

.game_item:hover>img {
  transform: translate(0, -10%) scale(1.2);
}

.game_item>.game_name {
  width: 100%;
  text-align: center;
  font-size: 16px;
  margin-top: 8px;
  color: white;
  text-decoration: none;
}