@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
html, body {
  overscroll-behavior: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-width: -moz-min-content;
  min-width: min-content;
  max-width: 1920px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.25;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
}

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

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

.wrapper {
  width: 1310px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

header {
  height: 70px;
  line-height: 70px;
}
header .logo {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 30px;
}

main {
  display: flex;
  flex: 1;
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;
  /* .screen-shots {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
  } */
}
main .info {
  width: 610px;
}
main .logo {
  width: 115px;
  height: 115px;
}
main h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-top: 20px;
}
main p {
  margin-top: 20px;
}

.downloads {
  margin-top: 54px;
}
.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 {
  width: 100%;
  padding: 30px 0;
  font-size: 13px;
  color: #fff;
  background-color: #151515;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
}
footer a {
  color: #FB860F;
}
footer em {
  font-size: 18px;
  font-style: normal;
}
footer p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}