html, body {
  height: 100%;
}

.container {
  height: 100%;
  max-width: 100%;
  font-family: "Roboto";
  font-size: 16px;
  line-height: 26px;
}

.wrapper {
  max-width: 1440px;
  position: relative;
  padding: 0 250px;
  margin: 0 auto;
}

.title {
  font-size: 50px;
  line-height: 70px;
}

.stores {
  display: flex;
  gap: 20px;
}
.stores > a:first-child {
  background: url(../images/google-play.png) no-repeat;
  transition: transform 0.5s ease;
}
.stores > a:first-child:hover {
  transform: scale(1.1);
}
.stores > a:last-child {
  background: url(../images/app-store.png) no-repeat;
  transition: transform 0.5s ease;
}
.stores > a:last-child:hover {
  transform: scale(1.1);
}

.stores-item {
  width: 180px;
  height: 60px;
}

.burger_menu-blur {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 2;
  transition: top 0.5s ease-out, opacity 0.5s ease-out;
}/*# sourceMappingURL=style.css.map */