* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e9ad6e;
  font-family: 'East Sea Dokdo', sans-serif;
}

.navbar,
.navitem,
.menu a {
  font-family: 'East Sea Dokdo', sans-serif;
} 

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  font-family: 'East Sea Dokdo', sans-serif;
  background-color: rgb(125, 227, 252);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-size: 40px;
  height: 10vh;
  box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.navitem {
  color: white;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 20px;
  margin: 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 40px;
}

.hamburger {
  font-size: 40px;
  cursor: pointer;
  color: white;
  display: none;
}

.games-section {
  padding: 40px 20px;
  text-align: center;
}

.games-section h2 {
  margin-bottom: 20px;
  font-size: 3em; 
}

.info-box {
  background: #e6d9c8;
  padding: 40px; 
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.info-box {
  background: #e6d9c8;
  padding: 45px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 25px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.card {
  background: #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.card-img {
  height: 160px;
  background: linear-gradient(#79c2d3, #1c6be0);
}

.card-body {
  padding: 20px;
  text-align: left;
}

.card button {
  margin-top: 10px;
  padding: 10px 18px;
  border: none;
  border-radius: 20px;
  background: #74bfd0;
  color: white;
  cursor: pointer;
}

footer {
  background: #74bfd0;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {

  .menu {
    display: flex;
    gap: 20px;
  }

  .menu a {
    color: white;
    text-decoration: none;
  }

  .hamburger {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .card:last-child {
    grid-column: span 1;
  }
}