body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.banner {
  height: 100vh;
  width: 100%;
  background: red;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2.2px);
  z-index: 1;
}

.banner img {
  width: 100%;
  height: 100%;
}

.banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.banner .banner-text h1 {
  font-size: 4rem;
  margin: 0;
}

.banner #typewriter {
  font-size: 4rem;
  margin: 0;
}

.games h2 {
  text-align: center;
  margin: 20px 0;
  color: #333;
  font-size: 4rem;
  font-family: "Carter One", system-ui;
}

.game-item {
  display: flex;
  width: 80%;
  margin: auto;
  gap: 50px;
  background: white;
  padding: 10px;
  border-radius: 10px;
}

.game-image {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 10px;
}

#mobile-menu {
  display: none;
}

footer {
  background-color: rgba(40, 44, 52);
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: white;
}

.separator {
  width: 100%;
  height: 1px;
  margin: 10px 0;
  background-color: gray;
}

.button {
  display: inline-block;
  padding: 10px;
  border-radius: 40px;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.button-secondary {
  background: transparent;
  border: 2px solid black;
  color: black;
  margin-top: auto;
  margin-bottom: 10px;
  /* width: fit-content; */
  width: 200px;
}

.button:hover {
  background: white;
  color: black;
  cursor: pointer;
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.game-info h3 {
  font-family: "Carter One", system-ui;
  font-size: 24px;
  color: slateblue;
  margin: 0;
}

.game-info span {
  font-size: 14pt;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (max-width: 1366px) {
  .banner img {
    object-fit: cover;
  }

  .game-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .button-secondary {
    width: inherit;
  }

  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* #mobile-menu {
    display: flex;
  }

  nav {
    display: none;
  } */
}
