html, body {
  overscroll-behavior: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  max-width: 1920px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.25;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  color: #fff;
  background: url("./images/bg.jpg") no-repeat left top, linear-gradient(103deg, #170000 0.92%, #34190E 74.22%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--t1, #FB860F);
  text-decoration: underline;
}

.wrapper {
  max-width: 1310px;
  margin: 0 auto;
}

main {
  display: flex;
  height: 640px;
  padding-top: 210px;
  font-family: Roboto;
}
main .info {
  flex: 1;
  margin-right: 40px;
}
main .logo {
  width: 188px;
  height: 188px;
}
main h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 300;
  margin-top: 20px;
}
main p {
  font-size: 48px;
  margin-top: 20px;
}
main .screen-shots {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  width: 770px;
}
main .screen-shots img {
  position: relative;
  width: 360px;
  bottom: 0;
  border-radius: 30px 30px 0 0;
}
main .screen-shots .pic-2 {
  position: absolute;
  left: 50%;
  margin-left: -180px;
  width: 360px;
  z-index: 1;
}

.downloads {
  margin-top: 46px;
}
.downloads a {
  display: inline-block;
  width: 220px;
  height: 0;
  padding-top: 66px;
  overflow: hidden;
  transition: opacity 0.2s;
  border-radius: 10px;
  color: #fff;
  background-color: rgb(44, 44, 44);
  background-size: contain;
  margin: 0 10px;
}
.downloads a:hover {
  opacity: 0.8;
}
.downloads .btn-google {
  background-image: url("./images/btn-google.svg");
}
.downloads .btn-apple {
  background-image: url("./images/btn-apple.svg");
}

footer {
  flex: 1;
  padding: 45px 0 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  background-color: #010101;
}
footer a {
  margin: 0 0.5em;
  color: #FB860F;
}
footer p {
  color: rgba(255, 255, 255, 0.6);
}