/* INIT */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER - FOOTER */
header{
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: white;
}

.cta {
  background-color: #F9AF09;
  padding: 10px 20px;
  margin: 30px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
}

footer{
  background-color: grey;
  padding: 20px;
}

/* ARTICLE */
.parallax {
  background-image: url("protegez_la_sante_de_votre_chat_avec_une_assurance_adaptee.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

h1 {
  color: white;
  font-size: 50px;
  text-align: center;
  margin: 200px auto;
}

.card{
  background-color: #F8F8F8;
}

.content {
  padding: 30px 0;
}

p {
  margin: 0 40px;
}

h2, h3, h4, h5, h6 {
  margin: 20px;
}
