/* CSS pour les composants simples */

/* importation de la police */

@font-face {
    font-family: "Poppins_Med";
    src: url("../assets/Poppins/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins_SemiBold";
    src: url("../assets/Poppins/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Franchise";
    src: url("../assets/Franchise.ttf") format("truetype");
}



/* valeurs générales */
html{
    height:100%;
    color:#373737;
}
body {
    font-family: Poppins_Med;
    background-color:white;
    color:#373737;
}

/* Titres */
h1{
    color: #000;
    text-align: center;
    font-family: Poppins_Med;
    font-size: 100%;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
}

h2{
    color: #000;
    text-align: center;
    font-family: Poppins_Med;
    font-size: 100%;
    font-style: normal;
    line-height: normal;
}

h3{
    color: #000;
    text-align: center;
    font-family: Poppins_Med;
    font-size: 48px;
    font-style: normal;
    line-height: normal;
}

h4{
    color: white;
    text-align: center;
    font-family: Franchise, sans-serif;
    font-size: 35px;
    margin : 0px;
}

a{
    text-decoration: none;
    color: #264040 ;
}

.box_colum{
    display: flex; 
    flex-direction: column;
    position: relative;
    text-align: justify;
    width: 100%;
    font-family: Poppins_Med;
    font-size: 20px;
}

.box_row{
    display: flex; 
    flex-direction: row;
    position: relative;
    justify-content: space-evenly;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.box_colum_body{
    display: flex; 
    flex-direction: column;
    position: relative;
    text-align: center;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

div#conteneur
{
    width: auto ;
    margin: 10% ;
    text-align: center;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
    background:rgb(229, 229, 229);
    right : 7em;
}

pre
{
    overflow: auto ;
}

.content 
{
    font-family: Poppins_Med;
    padding-top: 2em;
    height: 2em;
    font-size: 25px;
    display: flex;
    flex-flow: column wrap;
    color:#264040;
    padding-left: 2em;
}

.cercle_boutton{
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgb(229, 229, 229) ;
    border-radius: 60px;
    margin: 1%;
    position: fixed;
    align-content: center;
    display: flex;
    justify-content: space-around;
}

.arrow{
    width: 20px;
    height: 25px;
    background-color: white;
    clip-path: polygon(100% 100%, 100% 0, 0 50%);
    position: relative;
    top: 22%;
    right: 5%;
}

.top_mens{
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: auto;
    width: 100%;
}

.box{
    margin-left: 1.5%; 
    margin-right: 1.5%; 
    border-radius: 30px;
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
}

.img_affiche {
    display: block;
    width: 250px;
    border-radius: 50px;
}

.img_affiche:hover {
    border:solid;
    color: #B41611;
    border-width: 4px;
    box-sizing: border-box;
}

.note_top {
    position: absolute;
    bottom: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.note_H{
    position: absolute;
    display: inline-block;
    bottom: -60px;
    width:70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carte_image {
    width: 100%;
    height: auto;
    display: block;
}

.area_carte{
    display: flex;
}


/* Styles pour les écrans de petite taille (ex : téléphones) */
@media (max-width: 600px) {
    h1 {
        font-size: 15px;
    }
    h2{
        font-size: 15px;
    }
    .carte_monde {
        position: relative;
        width: 70%;
        max-width: 600px;
        margin: 0 auto;
    }
    .img_affiche {
        width: 250px;
        border-radius: 50px;
    }
    .img_affiche {
        display: block;
        width: 200px;
        border-radius: 40px;
    }
    .note_top{
        width: 80px;
    }
    .note_H{
        width:90px;
        bottom: -50px;
    }
}

/* Styles pour les écrans de taille moyenne (ex : tablettes) */
@media (min-width: 601px) and (max-width: 1024px) {
    h1 {
        font-size: 15px;
    }
    h2{
        font-size: 15px;
    }
    .carte_monde {
        position: relative;
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
    }
    .img_affiche {
        display: block;
        width: 200px;
        border-radius: 40px;
    }
    .note_top{
        width: 80px;
    }
    .note_H{
        width:90px;
        bottom: -50px;
    }
}

/* Styles pour les écrans larges (ex : ordinateurs de bureau) */
@media (min-width: 1025px) {
    h1 {
        font-size: 25px;
    }
    h2{
        font-size: 20px;
    }
    .carte_monde {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
    .img_affiche {
        display: block;
        width: 250px;
        border-radius: 50px;
    }
    .note_top{
        width: 100px;
    }
    .note_H{
        width:125px;
    }
}