.container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.container::after {
  content: '';
  background: url(effect.jpg);
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: .6;
  pointer-events: none;
}
.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 .up-images .left {
  background-image: url(yeni-ust.jpg);
  width: 100%!important;
}
.container .up-images .right {
  background-image: url(sag-alt-kamp-1.jpg);
}
.container .logo {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  height: 10vh;s
  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(yeni-orta.jpg) no-repeat;
    height: calc(65vh / 2);
    background-size: cover;
}
.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(yeni-sol-alt.jpg);
}
.container .alt-images .images .alt .sag {
  background-image: url(yeni-sag-alt.jpg);
  background-color: #ff7900;
}
.container .alt-images .buttons {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 9;
    position: relative;
    text-align: center;
}
.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;
    }
}