body {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
  }
  
  header {
    padding: 10px 25px;
    background-color: darksalmon;
    color: darkslategray;
    margin-bottom: 10px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
  }
  
  main {
    margin-bottom: 30px;
  }
  
  .item {
  display: inline-block;
  margin-right: 10px;
 }

/* float : left; /

/* Le code pour la fonctionnalité de "zoom" a été trouvée sur https://www.web-eau.net/blog/15-effets-css3-pour-vos-images 
Le travail de Frank Grisard m'a permis de comprendre comment "harmoniser" les images en les transformant en petit "médaillons" */

  img {
    width: 150px;
    height: 150px;
    border-radius: 100px 100px 100px 100px;
    border: rgb(199, 83, 16);
    border-width: 4px;
    border-style : solid;
    object-fit: cover;
    display: inline-block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    }
    img:hover {
      -webkit-transform: scale(1.9);
      transform: scale(1.9);
    }

  .clear {
    clear: both;
    overflow: hidden;
  }

  .container {
    width: 300px;
    height: 500px;
    border: 1px solid #0000;
    background-color: #e9a166;
    padding: 10px 15px;
    margin-right: 20px;
    display: inline-block;
  }
  
  .instruction {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  input {

    border-radius: 10px;
    margin-bottom: 10px;
    padding: 15px 40px 14px 40px;
    font-size: 30px;
    text-align: center;
    font-family: Tahoma, Geneva, Verdana, sans-serif;

  }
  
  button {
    background: darksalmon;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    color: darkslategray;
    font-size: 2rem;
    padding: 15px 40px 14px 40px;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  

  h3 {
    font-size: x-large;
    text-align: center;
    font-weight: bold;
  }
  
  section {
    text-align: left;
    font-size: x-large;
  }
  
  footer {
    background-color: lightsalmon;
    padding: 15px 30px;
    border-top: 1px solid palevioletred;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
    font-size: small;
  }

  .br {
    margin-bottom: 5em
  }
