@font-face {
    font-family: "Courier";
    src: url('font/Courier.ttf');
}

@font-face {
    font-family: "Quick";
    src: url('font/Quicksand.otf');
}

.texte{
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    align-content: center;
    color: black;
    font-family: 'Quick';
}

.partie{
    font-size: 1.3em;
    color: #00aff1;
    font-weight: bold;
}

@media screen and (orientation: landscape) {

    .texte{
        margin-bottom: 2em;
        font-size: 1.5em;
    }

    .largeur{
        width: 70%;
    }

}

@media screen and (orientation: portrait) {

    .texte{
        font-size: 1em;
    }

    .largeur{
        width: 96%;
    }

}