body {
  background-image: url(bg.jpg);
  background-size: cover;
}
.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.sag-pizza {
  position: absolute;
  right: -30px;
  max-width: 30%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
}
.sol-pizza {
  position: absolute;
  left: 0;
  max-width: 40%;
  bottom: 20%;
  transform: translateY(50%);
  z-index: 1;
}
.container .up-images {
  display: flex;
  flex-direction: row;
  height: 25vh;
}
.container .up-images .left, .container .up-images .right {
    background-size: cover;
    background-repeat: no-repeat;
    width: 50%;
    background-position: center;
}
.container .logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  height: 10vh;
  position: relative;
  z-index: 2;
}
.container .logo img {
  max-width: 180px;
  display: inline-block;
  margin: 0 0.5rem;
}
.container .alt-images {
  height: 65vh;
  position: relative;
}
.container .alt-images .images {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.container .alt-images .images .orta {
  background: url(orta-bg.jpg);
  height: calc(65vh / 2);
}
.container .alt-images .images .alt {
  display: flex;
  flex-direction: row;
}
.container .alt-images .images .alt .sol,
.container .alt-images .images .alt .sag {
  height: calc(65vh / 2);
  width: 50vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.container .alt-images .images .alt .sol {
  background-image: url(sol-alt.jpg);
}
.container .alt-images .images .alt .sag {
  background-image: url(image2.jpg);
  background-color: #ff7900;
}
.container .alt-images .buttons {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9;
  position: relative;
}
.container .alt-images .buttons .appStore img {
  max-width: 55vw;
}
@media (min-width: 767px) {
    .container {
        max-width: 400px;
        margin: 0 auto;
    }
    .container .appStore img {
        width: 200px;
    }
}
