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

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

.partie{
    text-decoration: underline;
    font-family: 'Courier';
    font-weight: bold;
    color: #00aff1;
}

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

.tarifs{
    position: relative;
    color: black;
    font-family: 'Quick';
}

.prix{
    text-align: right;
    color: #00aff1;
    font-weight: bold;
}

.desc{
    position: relative;
    color: black;
    font-family: 'Quick';
}

.bout{
    color: black;
    text-decoration: none;
}

@media screen and (orientation: landscape) {

    .partie{
        margin-left: 20%;
        font-size: 2.2em;
        margin-bottom: 1em;
    }

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

    .largeur{
        width: 70%;
    }

    .tarifs{
        width: 80%;
        font-size: 1.5em;
        margin-left: 20%;
    }

    .desc{
        width: 50%;
        font-size: 1.5em;
        margin-left: 25%;
    }

    .bout:hover{
        background-color: white;
        border-radius: 20px;
        padding-right: 0.5rem;
        filter: invert(1);
    }

}

@media screen and (orientation: portrait) {

    .partie{
        margin-left: 10px;
        font-size: 1.5em;
        margin-bottom: 1em;
    }

    .texte{
        align-items: center;
        font-size: 1em;
    }
    

    .largeur{
        width: 96%;
    }

    .tarifs{
        width: 96%;
        font-size: 1em;
        margin-left: 2%;
    }

    .desc{
        width: 96%;
        font-size: 1em;
        margin-left: 2%;
    }

}