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

body {
  background: url("./assets/background.png");
  background-size: cover;
  height: 100vh;
}

.gamestore {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gamestore .logo-wrapper {
  position: relative;
}
.gamestore .logo-wrapper .app-logo {
  margin: 55px;
}
.gamestore .logo-wrapper .fw-logo {
  position: absolute;
  top: 180px;
  left: 250px;
  width: 50px;
  object-fit: contain;
}

button.price-points {
  transform: translate(0, -50%);
  border: 1px solid green;
  border-radius: 7px;
  background-color: yellow;
  padding: 8px 12px;
  cursor: pointer;
}

.gamestore .bundles_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.gamestore .bundles_container .bundle {
  transition: transform 0.3s;
  position: relative;
}
.gamestore .bundles_container .bundle:hover {
  cursor: pointer;
  opacity: 1;
  transform: scale(1.1);
  z-index: 100;
}
.gamestore .bundles_container .bundle span {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 18px;
  color: white;
  text-shadow: 0 0 6px #000;
}

.gamestore .bundles_container .bundle img {
  max-width: 300px;
  width: 100%;
}

.inputs {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
