body {
  background-image: url(./img/bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}

.content {
  height: 766px;
  width: 1400px;
  margin: 0 auto;
  transition: transform 0.5s ease;
  transform: scale(1);
  transform-origin: top center;
}

.shrink {
  transform: scale(0.8);
}

.app {
  background-image: url(./img/app.png);
  background-position: -113px -112px;
  background-color: #ffffff;
  border-radius: 25px;
  width: 731px;
  height: 547px;
  box-shadow: 0px 0px 110px 3.23px #8BA45033;
  float: left;
  position: relative;
}

.anmiation {
  width: 1105px;
  height: 434px;
  background-image: url(./img/animation.png);
  position: absolute;
  animation: zoomFadeIn 300ms ease-out forwards;
  transform-origin: center;
  top: 152px;
  left: -182px;
}

@keyframes zoomFadeIn {
  from {
    transform: scale(0.9);
    opacity: 0.8;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.download {
  float: right;
  width: 479px;
  display: flex;
  flex-direction: column;
  float: right;
  margin-top: 118px;
}

.logo {
  width: 192px;
  height: 47px;
  background-image: url(./img/logo.png);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.slogan {
  width: 473px;
  height: 54px;
  background-image: url(./img/slogan.svg);
  margin-top: 18px;
}

.download p {
  color: #848896;
  letter-spacing: 8px;
  line-height: 39px;
  font-size: 21px;
  margin-top: 30px;
}

.btn {
  width: 479px;
  height: 56px;
  background-color: #FFF026;
  border-radius: 12px;
  color: #131737;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn:hover {
  cursor: pointer;
  background-color: #fff126cb;
}

.header {
  height: 100px;
  background-image: url(./img/head.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  padding: 0;
  margin-bottom: 30px;
}