body {
  overflow: auto;
  padding: 0;
}

body::-webkit-scrollbar {
  width: 0;
  background-color: var(--light-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--dark-color);
  border-radius: 99px;
}

main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 3rem var(--gutter-width);
}

.item-projet {
  grid-column: span 3;
}

.item-projet p {
  text-align: center;
}

.item-projet p span {
  text-transform: uppercase;
}

@media screen and (max-width: 1440px) {
  .item-projet {
    grid-column: span 4;
  }
}

@media screen and (max-width: 1000px) {
  .item-projet {
    grid-column: span 6;
  }
}

@media screen and (max-width: 650px) {
  .item-projet {
    grid-column: span 12;
  }
}
