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

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

.page{
    background-color: #e8e8e8;
}

.tete{
    align-items: center;
    border-bottom-style: solid;
    border-color: #bbb;
}

.titre{
    font-family: 'Courier';
    font-weight: bold;
    text-align: center;
    color: black;
}

.bouton{
    position: relative;
    text-align: center;
    font-family: 'Courier';
    font-weight: 1000;
    color: #00aff1;
    text-decoration: none;
    display: inline-block;
}

.boutonin{
    position: relative;
    text-align: center;
    font-family: 'Courier';
    font-weight: 1000;
    color: white;
    text-decoration: none;
    display: inline-block;
    background-color: black;
    border-radius: 20px;
}

@media screen and (orientation: landscape) {

    .tete{
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .logo{
        width: 18em;
        float: center;
    }

    .titre{
        font-size: 1.5em;
    }

    .bouton{
        font-size: 1.5em;
        padding: 5px;
        padding-top: 8px;
        padding-left: 1em;
        padding-right: 1em;
    }

    .bouton:hover{
        background-color: black;
        border-radius: 20px;
    }
     
    .boutonin{
        font-size: 1.5em;
        padding: 5px;
        padding-top: 8px;
        padding-left: 1em;
        padding-right: 1em;
    }

    .mequart{
        padding-bottom: 1em;
    }

}

@media screen and (orientation: portrait) {

    .tete{
        margin-left: 10px;
        margin-right: 10px;
        justify-content: left;
        padding-top: 1px;
    }

    .logo{
        width: 70%;
        float: left;
        margin-left: 15%;
        margin-right: 15%;
        margin-bottom: 2em;
    }

    .titre{
        font-size: 1.2em;
    }

    .bouton{
        font-size: 1.35em;
        width: 45%;
        padding: 3px;
        margin-bottom: 0.3em;
        }
     
    .boutonin{
        font-size: 1.35em;
        width: 45%;
        padding: 3px;
        margin-bottom: 0.3em;
    }

    .mequart{
        padding-bottom: 0em;
    }

}