a {
  color: inherit;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

#logo {
  position: fixed;
  right: 50px;
  top: 50px
}

p {
  font-size: 20px;

  margin: 0;
  padding: 0;
}

.galerie img {
  width: 100%;
}


#heure {
  font-size: 12px;
  position: fixed;
  right: 50%;
  top: 5px;
}

.points {
  animation: clignoter 1s infinite;
}

@keyframes clignoter {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.desc {

  position: fixed;

  bottom: 50px;
  right: 50px;

  width: 320px;

  padding: 21px;
  border-radius: 22px 11px 11px 11px;

  background-color: #d3d3d3;

  outline: none;
  overflow-wrap: break-word;

  font-weight: 300;

  cursor: grab;
}

.desc:active {
  cursor: grabbing;
}

.liste{
  list-style: none;
  position: fixed;

  top: 50px;
  left: 50px;
  
  font-size: 32px;
  font-weight: bold;
}

.liste ul {
  padding: 0;
  margin: 0;
}

.liste li {
  display: flex;

  gap: 10px;

  padding-top: 5px;
}


.projet {
  display: flex;
}

.violet {
  color: #EA00FF;
}

.rouge {
  color: #FF0000;
}

.bleu {
  color: #0015FF;
}

.noir {
  color: #000000;
}


.tournable {
  animation: tourner 1s linear infinite;
  animation-play-state: paused;
  transform-origin: center;
}

.tournable:hover {
  animation-play-state: running;
}

@keyframes tourner {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}