* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "SFProDisplay";
  src: url("../assets/fonts/sfprodisplay-semibold.woff2") 
}
  
.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: sans-serif;
  padding-top: 70px;
  align-items: center;
  font-family: "SFProDisplay";
}

.container {
  width: 781px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  margin-bottom: 40px;
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.header-info .subtitle {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.37px;
  text-align: center;
  color: rgba(0, 0, 0, 1);
}

.header-info .title {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0.37px;
  text-align: center;
  vertical-align: middle;
  color: rgba(30, 94, 72, 1);
}

.appstore {
  margin: 32px 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-info .title {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0.37px;
  text-align: center;
  color: rgba(148, 150, 163, 1);
}

.photos {
  width: 100%;
}

.appstore {
  height: 75px;
}

@media (max-width: 800px) {
  .main-container {
    padding-top: 48px;
  }

  .container {
    width: 327px;
  }

  .logo {
    margin-bottom: 48px;
  }

  .appstore {
    height: 56px;
  }

  .footer-info {
    gap: 48px;
  }

  .footer-info .title {
    font-size: 32px;
  }
}