p {
    margin: 0 !important;
    padding: 0 !important;
}
.all{
    height: 100vh;
    background-color: #F0EFEE;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.logo{
    margin-top: 50px;
}

.texte1{
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    color: #EE4A9B;
}

.groupe{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.groupe1{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.texte2{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0C5279;
    font-weight: 700;
}

.groupe2{
    display: flex;
    gap: 10px;
}

.adresse{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0472B6;
}

.telephone a{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0472B6;
}

.telephone a:hover{
    text-decoration: none;
    color: #0472B6;
}

.texte-href{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0C5279;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.texte-href a{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #0472B6;
    background-color: white;
    border-radius: 10px;
    padding: 5px 70px;
}

.texte-href a:hover{
    text-decoration: none;
    color: #0472B6;
}

@media screen and (max-width: 1024px){

    .all{
        height: auto;
    }

    .logo{
        text-align: center;
    }

    .logo img{
        width: 50%;
    }

    .texte1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        color: #EE4A9B;
        text-align: center;
    }

    .groupe {
        flex-direction: column;
        align-items: center;
    }

    .groupe1 {
        margin-bottom: 30px;
    }

    .texte2{
        text-align: center;
    }

    .texte-href a{
        padding: 5px 20px;
    }

}

@media screen and (max-width: 500px){

    .groupe2 {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .groupe3{
        gap: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .groupe3 p{
        text-align: center;
    }

    .texte-href{
        flex-direction: column;
        gap: 20px;
    }
    
}