body, html {
  overflow: hidden;
}

body {
  background-color: #00AD4C;
}

.wrraper {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img_one img {
  width: 80%;
}

.img_two {
  text-align: right;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.img_two img {
  width: 80%;
}

.logo_section {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo_section .logo {
  margin-bottom: 25px;
}
.logo_section .appStore {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.logo_section .appStore img {
  width: 200px;
  transition: all 0.2s linear;
}
.logo_section .appStore img:hover {
  transform: scale(1.05, 1.05);
}

.footer {
  background-color: #089B48;
  padding: 15px 0;
}
.footer ul {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer ul li a img {
  width: 30px;
  height: 30px;
  transition: all 0.2s linear;
}
.footer ul li a img:hover {
  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 768px) {
  .img_one img, .img_two img {
    width: 40%;
  }
  .logo_section .logo img {
    width: 50%;
  }
  .logo_section .appStore img {
    width: 130px;
  }
}/*# sourceMappingURL=style.css.map */