@media screen and (max-width: 480px) {
    body {
        font-size: 3rem; /* Augmentation pour mobiles */
    }

    h1 {
        font-size: 3.2rem; /* Plus grand pour la lisibilité */
        text-align: center;
    }

    .menu {
        font-size: 3rem;
        padding: 8px;
    }

    #pied-page {
        font-size: 1.2rem;
    }
}
.menu:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
 h1 {
        font-size: 3.2rem; /* Plus grand pour la lisibilité */
        text-align: center;
    }
    body {
        font-size: 1rem; /* Augmentation pour tablettes */
    }

    #principal {
        width: 95%;
        padding: 12px;
    }

   

    .menu {
        max-width: 100%;
        width: auto;
        font-size: 2rem; /* Plus grand pour la lisibilité */
    }

    /*.container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    gap: 20px;
}*/

}

/* Ajustement des boîtes pour qu'elles prennent la moitié de l'espace */
#image-moi, #touraine {
    flex: 1; /* Elles prennent chacune 50% de la largeur */
    max-width: 48%; /* Évite que ça dépasse */
}

h1 {
    color: black;
    font-size: 2em;
    font-family: baskerville;
    text-align: center;
}
h2
{
	font-family: baskerville;
	color: black;
	font-size: 2em;
}
h3
{
	font-family: baskerville;
	color: black;
	font-size: 1.3em;
}


@font-face{
font-family: "baskerville";
src: url("Baskerville.ttf");
 font-weight:450;

 
}
a {
    text-decoration: underline;
    color: black;
    
}
p
{
 font-family : baskerville;
 font-size: 1.2em;
 }
.flotte{
float:right;
padding: 10px;
}
.flotte-gauche{
float:left;
padding: 10px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


}

body {
     
    margin: 0;
    padding: 0;
    font-size: 1.05em; /* Augmentation de la taille de base */
    font-family: garamond,book antiqua,serif;
}

/* Conteneur principal */
#principal {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
   background-color: #ccd8ee; /* Bleu gris */
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: justify;
   
    padding: 16px;
}

/* Pied de page et langues */
#pied-page {
    text-align: center;
    background-color: #ccd8ee;
    width: 7%;
     align-items: center;
      border-radius: 15px;
      margin: 0 auto;

}
#langues
{
text-align: right;
}
#citation
{
text-align: right;
}

/* Menu */
.menu {
    
    width: 6em;
   height: 150%;
    
    
    font-size: 1.5em; /* Légèrement plus grand */
    text-align: center;
    
    background-color: #b1c1e1;
    border-radius: 10px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
    padding: 10px;
    
}

/* Image et contenu */
#image-moi,
#touraine {
    padding: 16px;
}

/* Conteneur flexible */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
   
    align-items: center;
}

/* Responsiveness */
