/* FONTS */
@font-face{
    font-family: 'raidercrusaderstraight';
    src: url(../fonts/raidercrusaderstraight.ttf) format('truetype');
}
@font-face{
    font-family: 'Beleren-Bold';
    src: url(../fonts/Beleren-Bold.ttf) format('truetype');
}
/* SITE SECTION */
/*html{
    background-image: url("img/bg01.png");
}*/
html, body {
    height: 100%;
}
body{
    background-color:black;
    display: flex;
    flex-direction: column;
}
#Header{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 69px;
    color: white;
    background-color: white;
    font-family: 'raidercrusaderstraight', Fallback, sans-serif;
}
#Menu{
    height: 69px;
    color: black;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255); /*Fallback*/
    background: rgba(255, 255, 255, .5);
    font-family: 'Beleren-Bold', Fallback, sans-serif;
    font-weight: bold;
}
#Menu ul li{
    display: inline-block;
    padding: 0 10px;
}
#Contenu{
    flex: 1 0 auto;
    color: white;
}
#Footer{
    display: flex;
    height: 33px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: white;
    font-family: 'Beleren-Bold', Fallback, sans-serif;
}
a, a:active, a:visited{
    color:black;
    text-decoration: none;
}
a:hover{
    color: gold;
    text-decoration: none;
    text-shadow: 0 0 6px darkgoldenrod;
}
/* PAGE INDEX */
#Description{
    padding: 0 10%;
    display: flex;
}
#IntroTXT{
    width: 60%;
    background-color: rgba(0, 0, 0, .5);
    text-align: justify;
    font-size: 20px;
    font-weight: bold;
    margin: 20px;
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
}
#IntroTXT h3{
    font-size: 24px;
}
#IntroIMG{
    width: 40%;
    display: inline-block;
}
#IntroChoix{
    width: 80%;
    margin: 0 10%;
    text-align: center;
}
/* PAGE CARTES */
#CardList{
    text-align: center;
    background: black;
}
.cardimg{
    display: inline-block;
    width: 375px;
}