/*================================================================================*/
/*=================================== Default ===================================*/
/*================================================================================*/

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*=================================== BASIC ===================================*/

a {
    text-decoration: none;
    list-style-type: none; 
}
p {
    text-align: center;
    font-family: monospace;
    font-size: 12px;
}

/*=================================== TITRE ===================================*/

h1,
h2,
h3,
h4,
h5,
h6{
    color:#6d3adf;
}

.titlegame {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100px;
	text-align: center;
}

/*=================================== LISTE ===================================*/

ul {
}
li {
    text-decoration: none;
    list-style-type: none;
    color: #6d3adf;
}

/*=================================== TABLEAU ===================================*/

table {   
}   
tr {    
}
th {
    font-size: 15px;
}
td {
    font-size: 12px;
}

/*================================================================================*/
/*=================================== HEADER NAV BAR ===================================*/
/*================================================================================*/

header nav.navbar {
    position: fixed;
    top: 0;right: 0;left: 0;
    background: #1b1b1b;
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: solid #ffffff;
}
header nav.navbar ul {
    list-style: none;
}
header nav.navbar ul li {
    position: relative;
    float: left;
}
header nav.navbar ul li:hover>ul {
    display: initial;
}

header nav.navbar ul li a{
    font-size: 20px;
    font-family: sans-serif;
    padding: 20px;
    color: #fff;
    display: block;
}
header nav.navbar ul li a:hover{
    color: #6d3adf;
}
header nav.navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: #1b1b1b;
    display: none;
}
header nav.navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
}
header nav.navbar ul li ul li a {
    font-size: 15px;
    font-family: sans-serif;
    padding: 15px;
    color: #fff;
    display: block;
}

/*================================================================================*/
/*===================================== BODY =====================================*/
/*================================================================================*/
body {
    /*background-image: url('../img/background.jpg');*/
    /*background-repeat: no-repeat;*/
    background-color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
/*================================================================================*/
/*==================================== FOOTER ====================================*/
/*================================================================================*/
footer {
    flex-shrink: 0;
    width: 100%;
    background: #1b1b1b;
    color: #ffffff;
    border-top: solid;
    border-top-width: 6px;
}
footer a {
    color: white;
}
/*================================================================================*/
/*===================================== DIV =====================================*/
/*================================================================================*/
div.principal {
    flex: 1 0 auto;
    padding-top: 70px;
    color: #fff;
}
div.principal p {
    padding: 350px;
    text-align: center;
    font-size: 50px;
     font-family: 'Rajdhani', sans-serif;
}
div.principal_footer{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 16px;
    padding: 15px 0px 10px;
}
div.bloc {
    flex-basis: 20%;
    margin: 0 15px;
    border-top: solid;
}
div.footer_page,
div.footer_contact,
div.footer_social{
    background-color: transparent;
}
div.footer_page ul.footer_text,
div.footer_contact ul.footer_text,
div.footer_social ul.footer_text{
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}
div.footer_page h1,
div.footer_contact h1,
div.footer_social h1{
    font-family: 'Rajdhani', sans-serif;
    font-size: 19px;
    padding-top: 8px;
}
div.footer_page ul.footer_text li,
div.footer_social ul.footer_text li,
div.footer_contact ul.footer_text li{
    padding-top: 5px;
    padding-bottom: 5px;
}
div.footer_page ul.footer_text li:hover a,
div.footer_social ul.footer_text li:hover a,
div.footer_contact ul.footer_text li:hover a{
    color: #6d3adf;
    transition: 0.3s;
}
div.B3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding-bottom: 100px;
}
div.team {
    display: flex;
    justify-content: center;
    width: 100%;
	height: 100%;
}

div.player {
    width: 260px;
    height: 100%;
	margin: 10px ; 
}

div.link {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.tri {
    display: flex;
    margin: 5px 10px;
}

/*================================================================================*/
/*===================================== CHANGE COLOR SYSTEME =====================================*/
/*================================================================================*/
@media (prefers-color-scheme: dark){
    body {
        background-color: #1b1b1b;
    }
}
@media (prefers-color-scheme: light){
    body {
        background-color: #fff;
    }
}