@import url("/fonts/Montserrat.css");
body {
  --text-color: #000000;
  color: #000000;
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  animation: 3s visible-anim cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes visible-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.presentation-principale {
  color: #000000;
  font-weight: 400;
}

.menu {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px #808080;
  background-color: #ffffff;
  z-index: 999;
  text-decoration: none;
}
.menu a {
  text-decoration: none;
}
.menu a:not(:last-child) {
  margin-right: 70px;
}

.menu-content {
  display: flex;
  margin-left: 40px;
  align-items: center;
  height: 100%;
  z-index: 999;
}
.menu-content .icon-menu-right {
  position: absolute;
  right: 30px;
}

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

a:hover {
  text-decoration: none;
}

.container {
  margin-top: 80px;
  margin-left: 30px;
}

#trouver {
  color: #000000;
  background-color: none;
  padding: 20px;
  border: 4px #000000 solid;
  border-radius: 60px;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 60px;
  transition: 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
#trouver:hover {
  color: #fff;
  border: 4px #0080FF solid;
  background-color: #0080FF;
}

#home .container-home {
  color: #000000;
  text-align: center;
  height: auto;
  margin-top: 100px;
}

#home h1 {
  font-size: 100px;
}

#home h2 {
  font-size: 30px;
  margin-top: -60px;
}

.button {
  color: white;
  background: #0080FF;
  border: none;
  border-radius: 5px;
  width: 120px;
  height: 30px;
  cursor: pointer;
}

input {
  border-radius: 3px;
  border: solid 0.5px grey;
  width: 200px;
  height: 25px;
  font-family: "Montserrat", sans-serif;
}

.red {
  color: red;
}

.present-home-container {
  position: relative;
  width: 80%;
  height: 150px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 0 10px #aaaaaa;
  border-radius: 20px;
  text-align: center;
  margin-top: 200px;
  padding: 10px;
  right: 4000px;
  transition: 700ms cubic-bezier(.35,.8,.48,.99);
  opacity: 0;
}
.present-home-container img {
  height: 100%;
  float: left;
}
.present-home-container .content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.footer {
  border-top: #bebebe 1px solid;
  width: 100%;
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
}
.footer .footer-icons {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 8px;
  box-shadow: 0 0 10px #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer .footer-icons img {
  width: 30px;
  max-width: 100%;
}
.footer a:not(:last-child), .footer span:not(:last-child) {
  margin-right: 30px;
}

.scrolled {
  right: 0;
  opacity: 1;
}

.img-code {
  border-radius: 15px;
}