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

.headerDiv {
  width: 100vw;
  aspect-ratio: 16 / 9;
  height: 56.25vw;
  text-align: center;
  vertical-align: center;
  z-index: 10;
}

.headerImg {
  width: 100vw;
}

.storeDiv {
  display: flex;
  width: 60%;
  justify-content: space-around;
  margin-bottom: 20px;
}

.listItem img {
  height: 400px;
}

.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);
}

.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;
}
}