body {
  background: url(../assets/salon-avec-sol-en-résine.jpg) #91d1de no-repeat;
  background-size: cover;
  color: black;
}

@keyframes fadeIn {
  from {
    top: 20%;
    opacity: 0;
  }
  to {
    top: 100;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    top: 20%;
    opacity: 0;
  }
  to {
    top: 100;
    opacity: 1;
  }
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
}

h1 {
  font-size: 3em;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
}

.dot {
  color: #91d1de;
}

p {
  text-align: center;
  margin: 18px;
  font-family: "Muli", sans-serif;
  font-weight: normal;
}

.icons {
  text-align: center;
}

.icons i {
  color: #00091b;
  background: #91d1de;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #91d1de;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover,
.icons i:active {
  color: #91d1de;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
}
.logo-mobile {
  display: none;
}
.logo {
  position: absolute;
  left: 50%;
  top: 34%;

  transform: translate(-50%, -34%);
  -webkit-transform: translate(-50%, -34%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  text-align: center;
}

.logo img {
  width: 65%;
}
@media only screen and (max-width: 600px) {
  body {
    background-size: auto, 100%, cover;
    background-position: 0% 20%;
    color: white;
  }
  .logo img {
    display: none;
  }
  h1 {
    font-size: 1.5em;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    text-align: center;
  }
  .logo-mobile {
    display: flex;
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -25%);
    -webkit-transform: translate(-50%, -25%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    text-align: center;
  }
  .logo-mobile img {
    width: 100%;
  }
}
