.container {
  display: flex;
  width: 90%;
  max-width: 1000px;
  gap: 10%;
  margin: 64px 0
}
.presentation-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 45%;
}
.join-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 45%;
  margin-top: 128px;
  color: #000000;
  text-align: center
}
.download-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 310px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
}
.desktop {
}
.mobile {
  display: none;
}
.app-info {
  color: white;
  text-align: left;
}
.learn-more {
  margin-top: 32px;
  text-align: left;
}
.download-button {
  height: 48px;
  padding: 14px 32px;
  border-radius: 48px;
  background: #B11F5E;
  color: white;
  border: 0;
  font-family: Apercu, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .container {
    flex-direction: column;
    gap: 0
  }
  .presentation-container {
    width: 100%;
  }
  .join-container {
    width: 100%;
    gap: 48px;
    margin-top: 48px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
