* {
    font-family: Roboto, sans-serif;
    
}

header {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid gray;
}

#logocie {
    display: inline-block;
    width: 450px;
    height: 175px;
    margin: 10px 5px;
    background: url("./images/logoselectelecom.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-clip: border-box;

}

#logoTV {
    display: inline-block;
    width: 75px;
    height: 75px;
    margin: 10px 5px;
    background: url("./images/Version-8-Of-TeamViewer-110.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-clip: border-box;

}

#headtext p {
    padding-left: 40px;
    font-weight: bold;
    font-size: 2.3rem;
}

p {
    font-size: 1.4em;
}

.info, .infosection {
    display:flex;
    margin-left: 50px;
}

.TV {
    display:flex;
    margin-left: 50px;
}


.icon {
    padding: 5px;
    width: 12px;
    color: rgb(37, 71, 131);
}

.donnees {
    padding: 5px;
}

#rbq {
    padding: 5px;
    margin-top: 5px;
    border-top: 1px solid grey;
}

a {
    color: blue;
}

#acces {
    display: inline-block;
    width: 450px;
    padding: 10px;
    border: 1px solid #414dff;
    border-radius: 0.4em;
    margin: 20px
}

#acces p {
    text-decoration: none;
}

#acces:hover {
    background-color: #c5e3ff;
}

@media ( max-width: 1080px ) {
    #headtext p {
        font-size: 1.8rem;
        font-weight: bold;
    }
    #logocie {
        width: 350px;
        height: 125px;
    }
    p {
        font-size: 1.1rem;
    }
}

@media ( max-width: 880px ) {
    #headtext p {
        font-size: 1.5rem;
        font-weight: bold;
    }
    #logocie {
        width: 280px;
        height: 110px;
    }
    p {
        font-size: 1rem;
    }
}

@media ( max-width: 720px ) {
    header {
        flex-direction: column;
        align-items: center;
    }
    #headtext p {
        margin-top: 0px;
        margin-left: 10px;
        padding-left: 0px;
        font-size: 1.6rem;
        text-align: center;
    }
    #headtext {
        padding: 0px;
        font-size: 1.4em;
        font-weight: bold;
    }
    #logocie {
        width: 450px;
        height: 175px;
    }
    p {
        font-size: 0.8rem;
    }
}

@media ( max-width: 540px ) {
    header {
        flex-direction: column;
        align-items: center;
    }
    #logocie {
        width: calc(100vw - 80px);;
        height: calc( 90vw / 3);
    }
    #headtext p {
        font-size: calc(4.5vw);
    }
    .info {
        flex-direction: column;
    }
    #acces {
        width: auto;
        text-align: center;
    }    
}

