* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background-color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-container {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

@keyframes clickAnimation {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.75);
  }
}

.belowImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.gameIntr {
  display: flex;
  align-items: center;
  padding: 0 4%;
}

.linear {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
}

.gameIcon {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  border-radius: 11px;
}

.gameName {
  font-size: 1.68em;
  font-weight: 600;
  text-align: left;
  margin-left: 5px;
}

.introduction {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
}

.rating {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  height: 100px;
  margin-left: 50px;
}


.install {
  width: 70vw;
  height: 80px;
  line-height: 30px;
  font-size: 30px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(to right, #91C31E, #27AE5F);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  animation: clickAnimation 1s ease-in-out infinite;
  margin-top: 15px;
}

.downloadNum {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  color: #c3c3c3;
  padding: 0 5px;
}

.downloadImg {
  display: inline-block;
  width: 22px;
  font-weight: bold;
}

.download {
  display: flex;
  justify-content: center;
  margin-top: -45px;
}


@media screen and (orientation: landscape) {

  .install {
    margin-top: -15px;
    margin-right: 15px;
    width: fit-content;
    padding: 0 8px;
  }

  .introduction {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    height: 26.7vh;
  }

  .gameName {
    white-space: nowrap;
    margin-top: -30px;
    font-size: large;
  }

  .gameIcon {
    object-fit: fill;
    width: 80px;
    height: 80px;
    margin-top: 10px;
  }

  .rating {
    margin-top: 0;
    margin-left: 0;
  }

  .linear {
    justify-content: flex-start;
    margin-left: 140px;
  }

  .linear-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -65px;
    margin-left: -40px;
  }

  .image-container {
    max-height: 80vh;
    height: 73.3vh;
  }

  .image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .download {
    margin-top: -35px;
    margin-left: -30px;
  }

  .container {
    justify-content: space-between;
  }

  .image-container img.background {
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
  }

  .endScreen {
    z-index: 999;
  }

}