/* hide navigation for small screen */
#smallNav {
    display: none !important;
}

#tournamentlink {
    color: white;
}

a:not([href]):not([class]):hover {
    cursor: pointer;
}
/* Responsive design on mobil */
@media all and (max-width: 620px) { 
    /* hide navigation for big screen */
    #navbarBig {
        display: none;
    }

    /* display navigation for small screen */
    #smallNav, #navbarSmall {
        display: block !important;
    }

    #navAccueilCol, #navcol {
        display: none !important;
    }
}

/* Responsive design on tablet (medium screen) */
@media all and (max-width: 1021px) and (min-width: 620px) { 
	#navAccueilCol {
        align-items: center;
    }
}