@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,400;1,600&display=swap');

html {
  height: 100%;
}

body {
  background: linear-gradient(#1D8EB1, #3E306A) no-repeat;
  background-size: 100%;
  height: 94%;
  color: white;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 100rem;
  margin: auto;
}

h1 {
  font-family: Poppins, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin: 1rem 1rem 1rem 0;
}

h1 span {
  font-size: 3.75rem;
  font-weight: 600;
  font-style: italic;
}

h1 hr {
  width: 18%;
  height: 0.7rem;
  background: white;
  border: none;
  margin: 0.5rem 0 0;
}

.picto_maintenance {
  width: 40%;
}

.picto_maintenance img {
  width: 100%;
  max-width: 40rem;
  min-width: 29rem;
}

.logos_rs {
  margin-bottom: 1rem;
}

.logos_rs img {
  margin-right: 0.4rem;
  width: 4.2rem;
}

/*Media queries*/

@media screen and (max-width: 950px) {
  html {
    height: unset;
  }

  main {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
    margin: 0.5rem 0 0.5rem 0;
  }

  h1 span {
    font-size: 2.5rem;
  }

  h1 hr {
    margin: 0.5rem auto 0;
  }

  p {
    font-size: 1rem;
  }

  .picto_maintenance {
    width: 100%;
  }

  .picto_maintenance img {
    max-width: 25rem;
    min-width: unset;
  }

  .logos_rs {
    margin-bottom: 3rem;
  }

  .logos_rs img {
    margin-right: 0.2rem;
    width: 2.8rem;
  }
}
