html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: roboto;
    overflow: hidden;
    box-sizing: border-box;
}

body {
    background-image: url(./img/Group\ 5.png);
    background-repeat: no-repeat;
    background-size: cover;
}



.container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.fictures-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 50%;
}

.img-header {
    margin-top: 30px;
    height: 100px;
    width: auto;
}

.img-header img {
    height: 100%;
    width: auto;
}

.paragraphe-center {
    color: #172D44;
    text-align: center;

    top: calc(50% - 100px - 30px);
    position: relative;
    transform: translate(0, -50%);
}

.paragraphe-grand-titre {
    font-size: 8rem;
    font-weight: 900;
    margin: 0px;
}

.paragraphe-moyen {
    margin-top: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

.floated-img {
    position: absolute;
    right: 0;    
    top: calc(-8rem + 1.5rem);
    height: 100%;
    width: auto;
}

.container {
    width: 100%; /* Par défaut, la largeur occupe tout l'espace */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; 
    padding-right: 15px; 
}

/* Smartphones : Écrans de 576px ou moins */
@media (max-width: 576px) {
    .container {
        max-width: 540px; /* Ajuste la largeur maximale */
    }

    .paragraphe-grand-titre {
        font-size: 3rem;
    }
    
    .paragraphe-moyen {
        font-size: 1rem;
    }

    .floated-img {
        position: absolute;   
        top: calc(-3rem + 1rem);
        left: 50%;
        top: -100%;
        transform: translateX(-50%);
        height: 80%;
    }

    .img-header {
        height: 60px;
    }

}

/* Tablettes : Entre 577px et 768px */
@media (min-width: 577px) and (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    .paragraphe-grand-titre {
        font-size: 4rem;
    }
    
    .paragraphe-moyen {
        font-size: 1rem;
    }

    .img-header {
        height: 80px;
    }

    .floated-img {
        position: absolute;
        right: 0;    
        top: calc(-4rem + 1rem);
        left: 50%;
        top: -80%;
        transform: translateX(-50%);
        height: 80%;
    }
}

/* Petits ordinateurs : Entre 769px et 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .paragraphe-grand-titre {
        font-size: 6rem;
    }
    
    .paragraphe-moyen {
        font-size: 1.2rem;
    }

    .floated-img {
        position: absolute;
        right: 0;    
        top: calc(-6rem + 1.2rem);
    }
}

/* Ordinateurs de bureau : Plus de 1024px */
@media (min-width: 1025px) {
    .container {
        max-width: 1140px; /* Fixe une largeur maximale pour les écrans larges */
    }
}

/* Très grands écrans : Plus de 2560px */
@media (min-width: 2560px) {
    .container {
        max-width: 1400px; /* Plus large pour les très grands écrans */
    }
}
 
  
