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/shape.png") no-repeat 30px top, linear-gradient(283deg, #340E30 0%, #030101 100%) repeat-y;
}

a {
  color: inherit;
}

a:hover {
  color: var(--t1, #EE1D47);
}

.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: 84px;
  height: 84px;
}
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: 312px;
  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: 68px;
  overflow: hidden;
}
.downloads a:hover {
  opacity: 0.8;
}

.btn-google {
  background: url("./images/btn-google.png") no-repeat;
  background-size: contain;
}

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: #EE1D47;
}
footer p {
  color: rgba(255, 255, 255, 0.6);
}