body {
  font-family:'Dancing Script', 'Brush Script', cursive;
  color: #635f5f; 
  background-color: #4e50b8;
  padding: 0;
  height: 100vh; 
  display: flex;
  flex-direction: column; 
  overflow-y: auto;
}

.grid-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
}

.grid-item1 {
  background-color: #ffffff;
  width: 50%;
  padding: 20px;
  margin-top: 60px;
  color: #000000;
  box-sizing: border-box;
  border-radius: 50px;
  text-align: center;
}

.title {
  font-size: 3em;
  font-weight: bold;
  margin: 0;
}

.introduction {
  font-size: 1.2em;
  color: #000000;
  margin-top: 20px;
  padding: 0 10px;
  text-align: center;
}

.game-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.game-item {
  background-color: #67696a;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 300px;
  box-sizing: border-box;
}

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.game-item img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

