body,
html {
  padding: 0;
  margin: 0;
  font-family: "Segoe UI", "Microsoft YaHei", "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
}

a {
  color: #2d77ff;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto;
  color: #fff;
  background: url("./background.jpg") no-repeat center center/cover;
}
.container .logo {
  display: flex;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1.32px;
  gap: 12px;
  margin-top: 18px;
}
.container .logo img {
  width: 52px;
  height: 52px;
}

.wrapper {
  min-height: 780px;
  width: 1235px;
  margin: 0 auto;
  overflow: hidden;
}

.app-container {
  margin-top: 50px;
  display: flex;
  padding: 50px 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
.app-container .line {
  width: 1px;
  align-self: normal;
  background-color: rgba(255, 255, 255, 0.3);
}

.app-info {
  flex: 1;
  max-width: 560px;
  text-align: center;
}

.app-title img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
}
.app-title h2 {
  font-family: "Barlow Condensed";
  font-size: 44px;
  font-weight: 600;
  margin: 12px 0 0 0;
}

.app-features {
  display: flex;
  list-style: none;
  padding: 0;
  margin-top: 60px;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
}
.app-features li {
  flex: 1;
}
.app-features p {
  margin: 20px 0 0 0;
}

.app-downloads {
  text-align: center;
  margin-top: 72px;
}
.app-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: rgba(18, 18, 19, 0.8);
  background-size: contain;
  margin: 0 10px;
}
.app-downloads a:hover {
  opacity: 0.8;
}
.app-downloads .btn-google {
  background-image: url("./btn-google.svg");
}
.app-downloads .btn-apple {
  background-image: url("./btn-apple.svg");
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
}

.footer .links a {
  font-weight: 500;
  font-size: 14px;
  margin: 0 5px;
}

.footer-container {
  text-align: center;
}

.reserved {
  font-weight: 400;
  font-size: 12px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.8);
}
.reserved a {
  color: inherit;
}

.reserved span {
  color: rgba(0, 0, 0, 0.6);
}