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: "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  color: #333437;
  background: url("./images/bg.png") no-repeat;
}

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

a:hover {
  color: #f95142;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

header.wrapper {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
}
header.wrapper .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
}
header.wrapper .logo img {
  width: 44px;
  height: 44px;
}
header.wrapper .extra {
  margin-left: auto;
}
header.wrapper .contact {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #067fff;
  border-radius: 18px;
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  text-decoration: none;
}
header.wrapper .contact:hover {
  background-color: #0670e2;
}

main.wrapper {
  position: relative;
  flex: 1;
  padding-top: 170px;
}
main.wrapper .info {
  position: relative;
  width: 515px;
  z-index: 1;
}
main.wrapper h1 {
  color: #0475ee;
  margin: 0;
  font-size: 66px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
main.wrapper p {
  font-size: 24px;
  margin-top: 10px;
}
main.wrapper em {
  font-style: normal;
  color: #f95142;
}
main.wrapper .screen-shots {
  position: absolute;
  right: -214px;
  bottom: 0;
}
main.wrapper .screen-shots img {
  vertical-align: bottom;
}

.downloads {
  margin-top: 60px;
}
.downloads a {
  display: inline-block;
  width: 220px;
  height: 0;
  padding-top: 68px;
  overflow: hidden;
  border-radius: 7px;
}
.downloads a:hover {
  opacity: 0.8;
}

.btn-android {
  background: url("./images/btn-android.png") rgba(0, 0, 0, 0.85) center center no-repeat;
  background-size: contain;
}

.btn-ios {
  background: url("./images/btn-ios.png") #000 center center no-repeat;
  background-size: contain;
}

footer {
  padding: 45px 0 54px;
  text-align: center;
  color: rgba(0, 0, 0, 0.3);
  background-color: #fff;
}
footer a {
  margin: 0 0.5em;
  color: #4D56FF;
}
footer p {
  color: rgba(0, 0, 0, 0.6);
}