body {
    font-family: 'Jacques Francois', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
    color: #333;
    box-sizing: border-box;
}

header img {
  border-radius: 50%;
  width:150px;
  margin-right: 0px;
  float:left
}

header h1 {
  font-size: 5.5rem;
  margin: 0;
  text-align: center;
}
section {
    margin-bottom: 10px;
  }
  
  footer {
    margin-top: 10px;
}
footer {
  position: relative;
  background: url('about.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 15px 10px;
  font-size: 0.9rem;
}

footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.399);
  z-index: 1;
  pointer-events: none;
}

footer * {
  position: relative;
  z-index: 2;
}
.liste-2-colonnes {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
  }

  .colonne {
    flex: 1;
    list-style-type: none;
    padding: 0;
  }

  .colonne li {
    margin: 5px 0;
  }

  .star-rating {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: inline-block;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 20px;
    color: lightgray;
    cursor: pointer;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: gold;
}