html,body  {
  font-family: "IBM Plex Sans", sans-serif;
  cursor: crosshair;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ----- structure ----- */

main {
  background-color: #1A1A1A;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column ;
  justify-content: space-between;
  align-items: center;
}

.logo {
    margin-top: 20px;
    width: 100px;
    filter: blur(3px);
}

.rotate-logo {
    width: 100%;
    height: 100%;
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(-360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(-360deg);
        transform:rotate(-360deg);
    }
}


.texte p {
  margin: 0;
  width:367px;
  color: #7B797A;
  font-size: 20px;
}

#ligneblanche {
  color: #D6D1CE;
}

footer {
  display: flex;
  align-items: center;
}

footer a, p {
  font-size: 20px;
  margin-left: 17px;
  color: #7B797A;
}

#link {
  margin-left: 0px;
}

/* ----- logo ----- */

.containerlogo {
  height: 100%;
  display: flex;
  flex-direction: column ;
  justify-content: center;
  align-items: center;
}

.logosolo {
    margin-top: 20px;
    width: 800px;
    filter: blur(10px);
}

.rotate-logo {
    width: 100%;
    height: 100%;
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(-360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(-360deg);
        transform:rotate(-360deg);
    }
}'
