/*Css style for fave game page*/

/*General style for body section*/
body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fc;
  margin: 0;
  padding: 0;
}

/*Style for container div*/
.container {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/*Heading one style*/
h1 {
  font-size: 30px;
  color: #333;
}

/*Paragraph style*/
p {
  font-size: 16px;
  color: #666;
}

/*Margin to for games-list*/
#games-list {
  margin-top: 30px;
}

/*Style for games-container*/
#games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*Style for game-item*/
.game-item {
  background-color: #f1f1f1;
  border-radius: 8px;
  width: 200px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*Apply style for game image*/
.game-item img {
  width: 100%;
  height: 100px;
  border-radius: 4px;
}

/*Apply style for game title*/
.game-item h3 {
  font-size: 18px;
  color: #333;
}

/*Apply style for game play button*/
.game-item button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e5533c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/*Apply style for game play button on hover*/
.game-item button:hover {
  background-color: #ff6b6b;
}
