@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background: url("images/background-photo.jpg") no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-color:#fff;
  margin: 0;
  padding: 0;
}

header {
  background: rgba(0,0,0,0);
  padding: 2em;
  display: flex;
  justify-content: space-between;
}

header .logo {
  height: auto;
  width: 60px;
}

nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

nav a {
  display: block;
  height: 25px;
  width: 25px;
  text-indent: -9999px;
  margin-left: 2em;
}

nav a:hover {

}

nav a:first-child {
  margin:0;
}

.linkedin {
  background: url("images/social/linkedin.svg") no-repeat;
}

.insta {
  background: url("images/social/instagram.svg") no-repeat;
}

.content {
  margin-left: 60%;
  width: 25%;
}

h1 {
  background: url("images/titre.svg") no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
  margin:0;
  height: 7em;
  width: 100%;
  padding: 0;
}

h2 {
  text-indent: -9999px;
  padding: 0;
  margin: 0;
}

p {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 0 0 0 2em;
  font-size: 0.9rem;
}

.separateur {
  background: rgb(0,0,255);
  height: 2px;
  width: 50%;
  margin: 2em auto;
}

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

.col {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  justify-content: flex-end;
}

.download {
  display: block;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  text-align: center;
  background: rgb(0,0,255);
  border-radius: 75px / 75px;
  color: #fff;
  width: 45%;
  padding: 0.8em;
  font-size: 0.8rem;
  transition: background-color 0.5s linear;
}

.download:hover {
  background: rgba(0, 0, 255, 0.5);
}

.pdf-btn {
  margin: 2em 0 0 0;
}

@media only screen and (max-width: 986px) {

  .download {
    width: 100%;
    margin-top: 2em;
  }

  .pdf-btn {
    flex-direction: column;
  }

  .separateur {
    margin: 1em auto;
  }

  h1 {
    height: 3em;
  }

  p {
    margin: 0;
  }

  .content {
  margin-left: 62%;
  width: 35%;
  }

}
