@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Annuler la décoration des liens et définir la couleur du texte */
a {
  text-decoration: none;
  color: inherit; /* Utilisez la couleur du texte par défaut de l'élément parent */
}

html,body {
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  background-image: url(bg.jpg);
  background-size: cover;
}

.wrapper .button {
  display: inline-block;
  height: 60px;
  width: 60px;
  float: left;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
}

.wrapper .button:hover {
  width: 200px;
}

.wrapper .button .icon {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.wrapper .button .link:nth-child(1):hover .icon {
  background: #4267B2;
}

.wrapper .button .link:nth-child(2):hover .icon {
  background: #1DA1F2;
}

.wrapper .button .link:nth-child(3):hover .icon {
  background: linear-gradient(#f9ce34, #ee2a7b , #6228d7);
}

.wrapper .button .link:nth-child(4):hover .icon {
  background: #333;
}

.wrapper .button .link:nth-child(5):hover .icon {
  background: #ff0000;
}

.wrapper .button .link:nth-child(6):hover .icon {
  background:  linear-gradient( #3e65cf, #c71610, #f2a60c, #08851b);
}

.wrapper .button .link:nth-child(7):hover .icon {
  background: #25D366;
}

.wrapper .button .link:nth-child(8):hover .icon {
  background: #0077B5;
}

.wrapper .button .icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.wrapper .button:hover .icon i {
  color: #fff;
}

.wrapper .button span {
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}

.wrapper .button .link:nth-child(1) span {
  color: #4267B2;
}

.wrapper .button .link:nth-child(2) span {
  color: #1DA1F2;
}

.wrapper .button .link:nth-child(3) span {
  background: -webkit-linear-gradient(#f9ce34, #ee2a7b , #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrapper .button .link:nth-child(4) span {
  color: #333;
}

.wrapper .button .link:nth-child(5) span {
  color: #ff0000;
}

.wrapper .button .link:nth-child(6) span {
  background: -webkit-linear-gradient(#3e65cf, #c71610, #f2a60c, #08851b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrapper .button .link:nth-child(7) span {
  color: #25D366;
}

.wrapper .button .link:nth-child(8) span {
  color: #0077B5;
}

.logo {
  width: 30%;
  height: 50%;
  margin: 0 auto;
  display: block;
}

h1 {
  margin-top: -10%;
  font-size: 300%;
}

.slogan {
  width: 70%;
  height: 80%;
  margin: 0 50%;
  margin-bottom: 0;
  margin-top: -18%;
  transform: translate(-50%);
  display: block;
}

.entete {
  margin: 0% auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
