body {
  margin: 0;
  font-family: Arial;
  background: #0a0a0a;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: black;
}

.logo {
  color: yellow;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e') center/cover;
  text-align: center;
}

.hero h2 {
  font-size: 50px;
}

.hero button {
  padding: 12px 25px;
  background: yellow;
  border: none;
  cursor: pointer;
}

.games {
  padding: 50px;
  text-align: center;
}

.game-card {
  display: inline-block;
  width: 300px;
  margin: 20px;
  background: #111;
  padding: 15px;
  transition: 0.3s;
}

.game-card:hover {
  transform: scale(1.1);
}

.about {
  padding: 50px;
  text-align: center;
}

.contact {
  padding: 50px;
  text-align: center;
}

.contact input,
.contact textarea {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 300px;
}

.contact button {
  padding: 10px 20px;
  background: yellow;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
}
