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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

#hero {
  height: 100vh;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.cta-button {
  background-color: #1bccf9;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

#games {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}

.icon {
  width: 10em !important;
  height: 10em !important;
}

.logo {
  width: 6em;
  height: 6em;
}

.game {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 1em;
}

.white-text {
  color: #fff;
}
.margin-around {
  margin: 1em;
}

.game img {
  width: 100%;
  border-radius: 10px;
}

.center-text {
  text-align: center;
}

.download-button {
  background-color: #1bccf9;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

#testimonials {
  background-color: #f8f8f8;
  padding: 40px 0;
  text-align: center;
}

blockquote {
  font-size: 1.2em;
  margin-bottom: 20px;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}
