html {
  background-color: #D7E2FF;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h2 {
  color: #002071;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.app-icon {
  width: 150px;
  height: 150px;
}

.intro {
  width: 50%;
  margin: auto auto 100px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 50px;
}

h2 {
  font-size: 32px;
}

.content .text {
  font-size: 20px;
}

.bloc-text {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.bloc-iphone-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.bloc-iphone-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
}


.download-button {
  width: 160px;
  padding: 12px;
}

.description {
  width: 700px;
  font-size: 20px;
}

.mockup {
  width: 400px;
  min-height: 500px;
}

footer {
  padding: 24px 0;
  background-color: #002071;
  color: white;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mail-link {
  color: white;
}

@media only screen and (max-width: 920px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 10rem;
  }

  .bloc-text {
    width: 80%;
  }

  .intro {
    width: 80%;
    margin: auto;
  }

  .description {
    width: 100%;
  }

  .bloc-iphone-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
  }

  .bloc-iphone-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
  }

  .mockup {
    width: 300px;
    min-height: 400px;
  }

  footer {
    margin-top: 100px;
    height: 100px;
  }

}