html, body {
  overscroll-behavior: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  color: #222225;
}

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

a:hover {
  color: #f95142;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1;
  background: url("./images/bg.png") no-repeat center center/cover;
}

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

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

main.wrap {
  position: relative;
  flex: 1;
  padding-top: 170px;
}
main.wrap .info {
  position: relative;
  width: 412px;
  z-index: 1;
}
main.wrap h1 {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
main.wrap p {
  font-size: 24px;
  margin-top: 10px;
  line-height: 1.4;
}
main.wrap em {
  font-style: normal;
  color: #0082fb;
}
main.wrap .screen-shots {
  position: absolute;
  right: -214px;
  bottom: 0;
}
main.wrap .screen-shots img {
  vertical-align: bottom;
}

.downloads {
  margin-top: 100px;
}
.downloads a {
  display: inline-block;
  width: 248px;
  height: 0;
  padding-top: 76px;
  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: #178fff;
}
footer p {
  color: rgba(0, 0, 0, 0.6);
}