html {
	scroll-behavior: smooth;
}

@font-face { font-family: "Lexend Deca"; src: url("../resources/fonts/LexendDeca-VariableFont_wght.ttf"); }
@font-face { font-family: "Gobold Extra2"; src: url("../resources/fonts/Gobold\ Extra2.otf"); }

body{
    font-family: "Lexend Deca";
    color: #f2f2f2;
    margin: 0px;
	background-color: #be0049;
}

#language {
	position: absolute;
	right: 140px;
	top: 25px;
}

#language img {
	width: 40px; 
    height: 40px;
}

.logoLigue {
	position: absolute;
	left: 50px;
	top: 25px;
    width: 100px; 
    height: auto;
}

h1{
	font-family: "Gobold Extra2";
    color: #f2f2f2;
	font-size: 60px;
	text-align: center;
}

.choices {
	display: flex;
	flex-direction: row;
	gap: min(100px, 5%);
	justify-content: center;
}

.choices p{
	color: #f2f2f2;
	background-color: rgb(90, 44, 255);
	font-size: 35px;
	padding: 5px;
	border-radius: 50px;
	cursor: pointer;
	width: 200px;
	height: 55px;
	line-height: 55px;
	text-align: center;
}

.choices p:hover{
	background-color: rgb(144, 113, 255);
}

.choices.design2 p {
	background-color: #383C4B;
}

.choices.design2 p:hover {
	background-color: #545762;
}

.choices.design2 p.active {
	border: solid #f2f2f2;
}

.content {
    display: flex;
	justify-content: center;
    margin-bottom: 100px;
}

.cartes {
	display: none;
	flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cartes.active {
	display: flex;
}

.continent h2 {
	font-size: 28px;
	text-align: center;
}

.continent .liste {
	display: grid;
	gap: 10px 40px;
	grid-template-columns: repeat(auto-fit, min(465px, 100%));
	grid-auto-flow: dense;
	justify-content: center;
}

.carte {
	background-color: #383C4B;
	border-radius: 5px;
	padding: 1px 20px;
	cursor: pointer;
	display: none;
}

.carte:hover {
	background-color: #545762;
}

.carte.info {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.carte.info span {
	padding: 16px 0;
	white-space: nowrap;
}

.carte.info :first-child {
	margin-right: auto;
	white-space: unset;
}

.carte.info img {
	height: 30px;
	width: auto;
}

.carte.active .arrow {
	transform: scale(-1, -1);
}

.carte.distribution {
	grid-column: 1 / -1;
}

.carte.distribution.active {
	display: block;
}

.subdivision {
	display: flex;
	width: min(425px, 100%);
	margin: 8px 0;
	justify-content: space-between;
}

.subdivision.title {
	font-weight: bold;
	margin: 16px 0;
}

footer {
	position: fixed;
	bottom: 0px;
	height: 50px;
	width: 100%;
	background-color: #f6e5d1;
	border-top : 3px solid #383C4B;
}
 
.footerContent {
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center; 
	width: 100%;
	height: 50px;
	gap: 50px;
	line-height: 30px;
	font-size: 30px;
	padding-top: 2px;
}
 
.ligueFooter {
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: center; 
	gap: 10px;
	padding-bottom: 4px;
}
 
.footerContent a {
	text-decoration: none;
	font-weight: bold;
	color: #383C4B; 
}
 
.logoLigueFooter {
	width: 40px;
	height: 40px;
}
 
.logoFooter {
	width: 30px;
	height: 30px;
}
 