
    
body {
 font-size: 2Opx;
  margin: 0;
  padding: 0;
  background-color: #d8d7d7f9;
  background-image: linear-gradient(90deg,white,rgb(0, 13, 255),white);
}

/* Header */

header{
  display: flex;
  justify-content: space-between;
  margin: 5%;
  font-family: Arial, Helvetica, sans-serif;
}

.grid-container {
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .item {
    background-color: #929292;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    font-size: 20px;
    text-align: center;
    width: 100%;
  box-sizing: border-box;
  }

  /* Colonnes spécifiques */
 
  .item2 {

    margin-left: 50px;
    position: absolute; /* Pour le superposer à la grid */
    top: 50%; /* Position verticale : centre */
    left: 50%; /* Position horizontale : centre */
    transform: translate(-50%, -50%); /* Ajuste le décalage pour centrer */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10; /* Assure que A4 soit au-dessus de la grid */
    text-align: center;

  }

  .render-area {
    margin-left: 50px;
    position: absolute; /* Pour le superposer à la grid */
    top: 50%; /* Position verticale : centre */
    left: 50%; /* Position horizontale : centre */
    transform: translate(-50%, -50%); /* Ajuste le décalage pour centrer */
    background-color: #ffffff;
    box-shadow:  0 0 22px 44px rgba(255, 255, 255, 1);
    padding: 20px;
    z-index: 10; /* Assure que A4 soit au-dessus de la grid */
    text-align: center;
    display: flex;

    position:absolute;
    margin-top: 30px;
   
    margin-right: 10px;
    width: 500px;
    aspect-ratio: 210/297;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    word-wrap: break-word;
}

#renderTitre {
    font-size: 30px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: center;
    max-width: 500px;
    word-wrap: break-word;
}

#renderImage {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 20px;
}

#renderDescription {
    font-size: 16px;
    text-align: center;
}
#canvasDessin {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}
   