/*! FONTS */
@font-face {
    font-family: 'Roboto';
    src: url("fonts/Roboto/static/Roboto-Italic.ttf");
}

/*! Reset */
* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;

    cursor: crosshair;
}

/*! Style*/
.container-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.regles {
    background-color: aliceblue;

    margin: 0px;
    padding: 20px 10px;

    text-align: center;
    font-family: 'Roboto';
}

.regles-article {
    text-align: left;
}

.classement {
    background-color: cadetblue;

}

.header {
    background-color: rgb(191, 148, 87);
    color: rgb(255, 255, 255);

    padding: 1px;
    text-align: center;
    font-family: 'Roboto';
}

.btn{
    background-color: rgb(164, 170, 116);
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    border: medium dashed;
    border-radius: 10px;
    cursor: pointer;
    margin: 5px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 10px;
}

.nav ul a {
    margin: 10px 20px;
}

/*! images */
.responsive-img {
    display: inline-block;
}