*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: red 1px solid; */
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

:root {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;


}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}

p{
  margin-bottom: 0;
}

header{
  padding: 1rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.0));
}

.logo{
  max-height: 6rem;
}

.background{
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/sigmund-Im_cQ6hQo10-unsplash.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}


.hero{
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

a{
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover{
  color: #fff;
  text-decoration: underline;
}

.adresse{
  color: #ddd;
}


footer{
  padding: 4rem 0;
  background-color: #121212;
}

.btn-primary{
  background-color: rgb(0, 152, 214);
  border-color: rgb(0, 152, 214);
}

.btn:hover{
  text-decoration: none;
}


@media screen and (max-width: 992px) {

  :root {
    font-size: 15px;
  }

  body {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;

  }

  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
  }

  p{
    margin-bottom: 0;
  }

  /* .background{
      background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/magnus-engo-mbXEkW5ZyBQ-unsplash.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  } */

  header{
    padding: 1rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.0));
  }

  .logo{
    max-height: 6rem;
  }


  .hero{
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  footer{
    padding: 3rem 1rem;
  }
}