:root {
    --bleu-fonce:#001447;
    --bleu-claire:#71CFEB;
    --rouge:#FF0000;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'space grotesk', sans-serif;
    font-weight: 400;
    background-color: black;
    color: white;
}

.bleuclaire {
    background-color: var(--bleu-claire);
}

.bleufonce {
    background-color: var(--bleu-fonce);
}

section {
    height: 40svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.allscreen {
    height: 85svh;
}

section.main {
    padding-top: 15svh;
}

section.row {
    flex-direction: row;
}

section.moyen {
    height: 32svh;
}

section.grand {
    height: 48vh;
}

section.tresgrand {
    height: 60vh;
}

section.petit {
    height: 20svh;
    box-shadow: var(--bleu-claire) 0px 1px 0px;
}

section.afficheur {
    justify-content: space-around;
}

section.informations img{
    max-width: 15svw;
}

h1 {
    font-weight: 700;
    font-size: 300%;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
    color: white;
    text-shadow: black 3px 3px 0px;
}

h2 {
    font-weight: 600;
    font-size: 200%;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    max-width: 90%;
    text-shadow: black 2px 2px 0px;
}

h3 {
    font-weight: 500;
    font-size: 130%;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    width: 90%;
    text-shadow: black 2px 2px 0px;
}

h4 {
    font-weight: 300;
}

.button_jouer {
    color: var(--rouge);
    text-align: center;
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
    font-size: 200%;
    margin-top: 5vh;
    transform: rotateX(12deg) rotateY(-10deg);
    transform-style: preserve-3d;
    background-color: #00144715;
    text-shadow: #c50000 1px 1px 0px;
}

.button_jouer::before {
    content: '';
    transform-origin: 0 0;
    background-color: #c50000;
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    transform: rotateX(-90deg);
}

.button_jouer::after {
    content: '';
    transform-origin: 0 0;
    background-color: var(--rouge);
    width: 30px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    transform: rotateY(90deg);
}

.button_jouer:hover {
    background-color: var(--rouge);
    color: white;
}

footer {
    height: 5svh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

footer a {
    font-weight: 300;
    text-decoration: none;
    color: white;
    font-size: 100%;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p.afficher {
    color: var(--bleu-fonce);
    border: 4px solid var(--bleu-fonce);
    border-radius: 25px;
    padding: 10px 0px 10px 0px;
    margin-bottom: 1vh;
    margin-top: 1vh;
    font-weight: 600;
    text-align: center;
    font-size: 120%;
    width: 100%;
    min-width: 130px;
}

.img_regle {
    width: 60vw;
    margin-top: 3vh;
}

p.infos {
    font-size: 120%;
    text-align: justify;
    width: 90%;
    font-weight: 500;
    text-shadow: black 2px 2px 0px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;
	box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

section.section_contact {
    justify-content: space-evenly;
}

div.div_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.div_contact img {
    width: 100px;
}

p.p_contact {
    font-size: 150%;
    text-shadow: black 2px 2px 0px;
}

label.open_navbar svg{
    fill: black;
}