@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
  background-color: #585858;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
body .container {
  display: flex;
  flex-direction: column;
}
body .container header {
  background-color: #46c1f6;
}
body .container header h1 {
  margin: 0 20px;
}
body .container header h1 a {
  color: black;
  text-decoration: none;
}
body .container header nav {
  display: flex;
}
body .container header nav ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-around;
  list-style: none;
}
body .container header nav ul li {
  display: flex;
  align-items: center;
}
body .container header nav ul li a {
  font-size: 2em;
  text-decoration: none;
  border-bottom: 2px solid #7dc6d8;
  color: #013441;
}
body .container header nav ul li a:visited {
  text-decoration: none;
  color: #013441;
}
body .container header nav ul li a:hover {
  cursor: pointer;
}
body .container footer {
  background: linear-gradient(315deg, #051d3d, #7e9cbe);
  display: flex;
}
body .container footer > div {
  margin: 0 20px;
}
body .container footer > div.reseaux_sociaux {
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: gray;
}
body .container footer > div.reseaux_sociaux h3 {
  margin: 0;
  margin-left: 10px;
  padding: 0;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.747);
}
body .container footer > div.reseaux_sociaux .wrapper {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
}
body .container footer > div.reseaux_sociaux .wrapper div {
  display: flex;
  justify-content: end;
}
body .container footer > div.reseaux_sociaux .wrapper div a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin: 10px;
  color: black;
  font-size: 1em;
  text-decoration: none;
}
body .container footer > div.reseaux_sociaux .wrapper div a > p {
  margin: 0;
  color: white;
}
body .container footer > div.reseaux_sociaux .wrapper div a .icon {
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 5px;
  width: 10px;
  height: 10px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body .container footer > div.reseaux_sociaux .wrapper div a .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
body .container footer > div.reseaux_sociaux .wrapper div a .icon:hover span {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
body .container footer > div.reseaux_sociaux .wrapper div a .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body .container footer > div.reseaux_sociaux .wrapper div a .tooltip:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body .container footer > div.reseaux_sociaux .wrapper div a .twitter {
  background-color: #46c1f6;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .twitter:hover .tooltip {
  background-color: #46c1f6;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .github {
  background-color: black;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .github:hover .tooltip {
  background-color: black;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .github:hover .tooltip::before {
  background-color: black;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .discord {
  background-color: #7289da;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .discord:hover .tooltip {
  background-color: #7289da;
  color: #ffffff;
}
body .container footer > div.reseaux_sociaux .wrapper div a .discord:hover .tooltip::before {
  background-color: #7289da;
  color: #ffffff;
}
body .container footer > div.copyright {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 75%;
}
body .container footer > div.copyright p {
  margin: 0;
  padding: 0;
  height: 30px;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=style.css.map */
