.projet-form {
    width: 20rem;
    max-width: 90%;
    margin: auto;
    display: block;
}

.projet-item {
    width: 20rem;
    max-width: 95%;
    margin: 1rem;
}

.projet__title {
    font-size: 1.2rem;
    text-align: center;
}

.projet__price {
    text-align: center;
    color: #4d4d4d;
    margin-bottom: 0.5rem;
}

.projet__description {
    text-align: center;
}


body {
    margin: 0;
    position: relative;
  }
  
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding-bottom: auto;
  }
  
  .carousel-container {
    width: auto;
    padding-block: 16px 32px;
    margin: 16px 32px;
    overflow-x: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    scroll-snap-type: x mandatory;
  }
  
  .carousel-container::-webkit-scrollbar {
    height: 14px;
    width: calc(100% - 48px);
  }
  
  .carousel-container::-webkit-scrollbar-track {
    background: #b1b3b399;
  }
  
  .carousel-container::-webkit-scrollbar-thumb {
    background: #29AB87;
  }
  
  .carousel-container::-webkit-scrollbar-track-piece:start {
    background: #29AB87;
  }
  
  .carousel-slide {
    flex: 1 0 30%;
    aspect-ratio: 1;
    flex-flow: column nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:  	#A9A9A9;
    scroll-snap-align: center;
  }
  
  @media (max-width: 600px) {
    .carousel-slide {
      flex: 1 0 90%;
    }
  }
  
  footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 16px;
    background-color: #eaeaea90;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  
  footer p {
    color: #221133;
    margin: 0;
  }
  
  footer a {
    text-decoration: none;
    color: inherit;
  }
  

  