body {
    background-color:var(--bg-color);
    font-family : var(--font-family), monospace;
}



.container {
    max-width: 900px;   /* largeur maximale */
    width: 90%;         /* prend 90% de l’écran si plus petit */
    margin: 60px auto;  /* centré horizontalement, marge verticale */
}


.header h1 {
    font-size: clamp(24px, 6vw, 40px); /* adaptable selon largeur écran */
    text-align: center;
    font-weight: normal;
    color: var(--text-color);
    text-decoration: none;
}




.header img {
    border-radius: 17px;
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
}


.header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-bottom: 7%;
}


p {
    font-size: clamp(16px, 3vmax, 28px);
    text-align: justify;
    color : var(--text-color);
    margin-bottom: 1.5rem;
}



.contact h2{
    font-size: clamp(20px, 4vw, 40px); /* adaptable selon largeur écran */
    text-align: left;
    font-weight: normal;
    color: var(--text-color);
    text-decoration: none;
    

    }


.button-container{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;

    }


.button-container{

    margin: 0;
    font-size: 14px;
    color: var(--text-color);

    }


#copier-btn {
    background-color: var(--btn-color);
    border: none;
    color: var(--text-color);
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 32px);
    text-decoration: none;
    font-family: var(--font-family), monospace;
    display: inline-block;
    cursor: pointer;
    font-size: clamp(16px, 2vw, 24px);
    border-radius: 12px;
    transition: 0.6s ease;
    margin: 0 auto;
}

#copier-btn:hover {
  background-color: var(--btn-hcolor);
  transform: scale(1.1);
  color: var(--bg-color);
}



footer {
    color: var(--text-color);
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;     /* prend toute la largeur */
    padding: 10px;
}

