/*Yann Aebischer
12.01.2026
Fait tout ce qui a juste sur Régles*/
#badminton {
    display: block;
    width: 100%
}

#Règles {
    /*Montre la page actuel*/
    background-color: #a71414;
}

#haken {
    display: inline-block;
    width: 100px;
    height: auto;
    transform: rotate(10deg);
    /* https://www.geeksforgeeks.org/html/how-to-rotate-image-in-html/ */
    position: relative;
    top: 20px;
}

h2 {
    display: inline-flex;
    text-align: center;
}

.reglement-navigation {
    /*Mais de la couleur et enleve la ligne en dessus etc*/
    color: rgb(255, 255, 255);
    background-color: #D7141C;
    padding: 25px;
    text-decoration: none;
    display: inline-flex;
    margin: 10px;
}

@media screen and (max-width: 720px) {

    /*Fait que si on est sur un ecran petit comme un Natel il y a pas de logo*/
    #haken {
        display: none;
    }
}