
.box {
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.home_info {
    text-align: center;
    color: white;
    font-size: 4rem;
}

.about {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

p {
    text-align: center;
    color: white;
    font-size: 1.2rem;
} 

.noq {
  font-size: 1.7rem;
  color: #907fad;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.hours_item h1 {
  font-size: 2rem;
}

.prices {
    margin-top: 5rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.prices_grid {
  justify-content: center;
  display: grid;
  grid-template-columns: 150px 150px;
  gap: 20px;
  margin: 20px;
}

.price_item {
  padding: 5px;
  width: 150px;
  background-color: #907fad;
  text-align: center;
  border-radius: 8px;
}

.price_item h2 {
  margin: 0;
  font-size: 1.6rem;
}

.price_item h3 {
  margin: 5px 0 0;
  font-size: 1.3rem;
  color: black;
}

.games {
    margin-top: 5rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  justify-items: center;
}

.game-card {
  text-align: center;
  color: white;
}

.game-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.game-card h3 {
  margin-top: 0.5rem;
  font-family: 'typetwo';
  font-size: 1rem;
}


@media screen and (max-width: 768px) {
  .about {
      margin-left: 3rem;
      margin-right: 3rem;
  }

  .home_info, h2 {
    font-size: 1.2rem;
  }

    .game-grid {
  grid-template-columns: repeat(2, 1fr);
  }

}

@media screen and (max-width: 480px) {
  .game-grid {
    grid-template-columns: 1fr;
  }
}