@charset "UTF-8";
* {
  margin: 0;
}

body {
  font-family: "manrope", "sans-sérif";
  font-size: 1em;
  background: linear-gradient(90deg, rgb(129, 157, 215) 0%, rgb(102, 196, 215) 50%, rgb(197, 225, 231) 100%);
}

a {
  text-decoration: none;
  color: black;
}

h1 {
  font-size: 3.5em;
  font-family: "montserrat", "sans-serif";
}

h2 {
  font-family: "montserrat", "sans-serif";
}

p {
  font-size: 1.1em;
}

header,
footer {
  background-color: white;
  padding: 20px 20px;
}

footer h2 {
  text-align: center;
}

footer p {
  font-size: 0.8em;
  text-align: center;
}

footer div {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
footer div a {
  margin-left: 10px;
}

.cta {
  display: inline-block;
  background-color: white;
  padding: 20px 30px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: 330ms ease-in-out;
}
.cta:hover {
  color: white;
  background-color: rgb(129, 157, 215);
  text-decoration: none;
  text-shadow: 2px 2px 3px rgb(197, 225, 231);
  border: 1px solid white;
  border-radius: 50px;
  transform: scale(1.1) translateY(5px);
}

a:hover {
  text-decoration: underline;
}

.lien-icone:hover {
  opacity: 0.5;
}

.title-name {
  text-align: center;
}

.navbar {
  text-align: center;
  margin-top: 15px;
}
.navbar .navbar__link {
  margin-left: 20px;
}
.navbar .navbar__link--blue {
  color: rgb(129, 157, 215);
  margin-left: 20px;
}

@media screen and (max-width: 996px) {
  h1 {
    font-size: 2em;
  }
}/*# sourceMappingURL=style.css.map */