body{
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

header{
  padding: 10px 0;
}

main {
  padding: 15px 15px;
  text-align: center;
}

.layout{
  max-width: 980px;
  margin: 0 auto;
}

.logos{
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  gap: 20px;
}

img{
  align-self: center;
}

h1{
  display: none;
}

.bloc{
  padding: 15px 0;
  margin-bottom: 25px;
}

h2{
  font-family: "Heebo",sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 4px;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  color: #132c2a;
  margin: 0;
}

p{
  color: #1f1f1f;
  font-weight: 400;
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  line-height: normal;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 1.25em;
}

a{
  text-decoration: none;
}

.bouton {
  padding: 12px 30px;
  font-family: "Heebo",sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #c35033;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  outline: 0;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #c35033;
}

.bouton:hover{
  border: 1px solid #c35033;
  background: transparent;
  color: #c35033;
}


.footer{
  padding: 20px;
}


@media screen and (min-width:600px) {

  .logos{
    flex-direction: row;
  }

  header{
    padding: 20px;
  }

  main {
    padding: 20px 20px;
  }

  .bloc{
    padding: 30px 0;
    margin-bottom: 30px;
  }

}