body {
  padding: 0;
  padding-top: 75px;
  margin: 0;
  display: flex;
  background-color: #dbeaeb;
  flex-direction: column;
  align-items: center;
  color: white;
  font-family: sans-serif;
}

.studiosDiv {
  background-color: #000;
  background: linear-gradient(90deg, rgb(0, 8, 8) 0%, rgba(0, 0, 0, 1) 50%, rgb(8, 0, 8) 100%);
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.studiosDiv h2 {
  margin-top: 0;
  cursor: pointer;
  display: inline-block;
}

.arrowBtn {
  font-weight: lighter;
  color: #888;
  font-size: 20px;
}

.gamesList {
  display: flex;
}

.logo {
  width: 70px;
  height: 70px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.appframe {
  height: 200px;
  width: 100%;
  background-color: black;
}

.appframe .appbg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  position: relative;
}

.appinfo img {
  height: 200px;
}

.appframe .appinfo {
  position: absolute;
  width: 100%;
  height: 200px;
  opacity: 0;
  transition: 0.5s;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.appframe:hover .appinfo {
  opacity: 1;
}

.listItem {
  padding-right: 20px;
  width: 250px;
}

.listItem img {
  width: 250px;
}

.button {
  background: white;
  border: 0;
  width: 100%;
  font-size: 20px;
  color: black;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.listInfoLeft {
  width: 250px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.moreBtn {
  background: linear-gradient(90deg, #101944, #3c0335);
  border: 0;
  width: 80%;
  font-size: 20px;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: background 1s ease-out;
  -moz-transition: background 1s ease-out;
  -o-transition: background 1s ease-out;
  transition: background 1s ease-out;
}

.moreBtn:hover {
  background: linear-gradient(90deg, #00d3ff, #ff00ff);
}

.getBtn {
  background: linear-gradient(90deg, #101944, #3c0335);
  border: 0;
  width: 30%;
  font-size: 20px;
  color: white;
  height: 50px;
  border-radius: 10px;
  text-align: center;
  float: right;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: background 1s ease-out;
  -moz-transition: background 1s ease-out;
  -o-transition: background 1s ease-out;
  transition: background 1s ease-out;
}

.getBtn:hover {
  background: linear-gradient(90deg, #00d3ff, #ff00ff);
}

.getBtn:disabled {
  background: linear-gradient(90deg, #464646, #353535);
  color: #a7a7a7;
  font-weight: normal;
}

.getBtn:disabled:hover {
  background: linear-gradient(90deg, #464646, #353535);
}

.productInfo {
  position: relative;
  left: 5%;
  bottom: 450px;
  padding: 10px;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 40%;
}

.productIcon {
  border-radius: 10px;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.productBanner {
  width: 100vw;
  text-align: center;
  vertical-align: center;
  z-index: 10;
}

.popupContainer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.popup {
  padding: 10px;
  border-radius: 20px;
  background-color: #111111;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .headerImg {
    height: 350px;
    object-fit: cover;
  }

  .listItem img {
    height: 200px;
  }

  .storeDiv {
    width: 80%;
  }

  .productInfo {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: transparent;
    width: 95%;
    height: auto;
  }

  .popup {
    padding: 10px;
    border-radius: 20px;
    background-color: #111111;
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .headerDiv {
    aspect-ratio: auto;
    height: auto;
  }
}