/* קובץ העיצוב לתצוגת משחקים בכל העמודי משחקים */

*{
  font-family:system-ui

 }
 .games1 {
  padding: 25px;
  margin: 260px 50px 0px 50px;
  position: absolute;
  text-align: center;
  font-size: 25px;
  color: rgb(45, 138, 125);
}

.game {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.game-item {
  margin: 35px;
}

.game-item .img {
  width: 300px;
  height: 210px;
  border: 3px solid;
  border-color: rgb(7, 5, 5);
  display: inline-block;
  border-radius: 4px;
  transition-timing-function: linear;
  transition-duration: 0.3s;
}

.img:hover {
  border-color: rgb(45, 138, 125);
  border-width: 4px;
}
