body {
    background: linear-gradient(to bottom, #000 500px, #222 100%);
    /* étendre le dégradé sur tout l'écran */
    min-height: 100vh;
    margin: 0;
    color: rgb(244, 173, 126);
    font-family: "Montserrat", sans-serif;
}
/*maintenant les mediaqueries*/
h1 {
    color: antiquewhite;
    text-align: center;
    margin-top: 400px;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

h2 {
    color: rgb(244, 173, 126);
    text-align: center;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.container {
    width : 100% ;
    margin : 0 auto ;
    display: flex;
    justify-content: space-around; /* espace autour des blocs */
    align-items: flex-start; /* alignement en haut */
    padding-top: 50px;
    flex-wrap: wrap; /* pour faire passer les éléments sur plusieurs lignes si nécessaire */
}

.presentation {
    text-align: center;
    max-width: 200px;
    margin: 10px;
    line-height:1.3 ;
}
.nom {
    font-weight: 600;
    text-transform:uppercase;

}
.pseudo{
    font-style: italic;
    color: antiquewhite;
}
.spec{
    color:antiquewhite;
}

ul {
    list-style-type: none; /* Enlève les bullets */
    display: flex; /* Aligne les éléments horizontalement */
    justify-content: center; /* Centre les icônes */
    padding: 0;
    margin: 0;
}

li {
    margin: 0 10px; /* Ajoute un espace entre les icônes */
}
.svg{
    fill: antiquewhite;
}
.svg:hover {
    fill: rgb(244, 173, 126);
}

@media (min-width: 500px) {
    h1{
        font-size: 60px;
    }
    h2{
        font-size:20px;
    }
    .photo {
        width: 80%; /* on peut ajuster selon besoin */
        border-radius: 8px; /* coins arrondis pour les photos */
    }
    .nom {
        font-size: 15px;
    }
    .svg{
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 900px) {
    h1{
        font-size: 80px;
    }
    h2{
        font-size: size 30px;
    }
    .photo {
        width: 100%; /* on peut ajuster selon besoin */
        border-radius: 10px; /* coins arrondis pour les photos */
    }
    .nom {
        font-size: 20px;
    }
    .svg{
        width: 20px;
        height: 20px;
    }
}
@media (min-width:1024px) { 
    .container {
        width:1024px;
    }
}
@media (min-width:1200px) {
    h1{
        font-size: 120px;
    }
    h2{
        font-size:40px;
    }
    .svg{
        width: 24px;
        height: 24px;
    }
    
}

/*le bouton*/

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Ajuste la marge selon l'emplacement souhaité */
    margin-bottom: 100px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: antiquewhite;
    text-decoration: none;
    border: 1px solid antiquewhite;
    border-radius: 8px; /* Bord arrondi */
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: rgb(244, 173, 126);
    color: #fff;
}

/*le footer*/

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #333; /* couleur de fond pour le footer */
}

.mailto {
    color: antiquewhite;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.mailto:hover {
    text-decoration: underline; /* Pour ajouter une indication de lien au survol */
}