@font-face {
	font-family: 'CabinetGrotesk-Variable';
	src: url('Polices/Cabinet/CabinetGrotesk-Variable.woff2') format('woff2'), url('Polices/Cabinet/CabinetGrotesk-Variable.woff') format('woff'), url('Polices/Cabinet/CabinetGrotesk-Variable.ttf') format('truetype');
	font-weight: 100 900;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: "Fantome";
	src: local("Fantome"), url("Polices/Fantome/Fantome.otf") format("opentype"), url("Polices/Fantome/Fantome.woff") format("woff"), url("Polices/Fantome/Fantome.eot") format('embedded-opentype'), url("Polices/Fantome/Fantome.ttf") format('truetype');
}

@font-face {
	font-family: "Aukera";
	src: local("Aukera"), url("Polices/Aukera/Aukera.otf") format("opentype"), url("Polices/Aukera/Aukera.woff") format("woff"), url("Polices/Aukera/Aukera.eot") format('embedded-opentype'), url("Polices/Aukera/Aukera.ttf") format('truetype');
}

@font-face {
	font-family: "Lexend";
	src: local("Lexend"), url("Polices/Lexend/Lexend-VariableFont_wght.ttf") format('truetype');
}

* {
	margin: 0px;
	padding: 0px;
}

a {
	all: unset;
	cursor: grab;
}

body {
	max-width: 1440px;
	margin: 0 auto;
	color: white;
	background-color: black;
	font-family: "Lexend";
	font-weight: 400;
	font-size: calc(10px + 1vw);
	text-align: center;
}

header {
	height: 18vw;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s;
}

header:hover {
	background-color: white;
	transition: 0.25s;
}

header:hover #logo_header {
	filter: invert(1);
}

main {
	padding: 20px;
	transition: 0.25s;
}

main:hover {
	color: black;
	background-color: white;
	transition: 0.25s;
}

main:hover .logo_main {
	filter: invert(1);
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px 20px 20px;
}

#logo_header {
	width: 30vw;
	padding: 20px;
}

#logos_main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10vw;
}

.logo_main {
	width: 200px;
	padding: 5vw 0;
}

#logo_footer {
	height: 40px;
	padding: 20px;
}

#lang-switch {
	font-family: "CabinetGrotesk-Variable";
	font-weight: 500;
	font-size: 15px;
	background-color: white;
	color: black;
	border: 3px solid white;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	transition: 0.25s;
}

#lang-switch:hover {
	background-color: black;
	color: white;
	border: 3px solid white;
	transition: 0.25s;
}

@media screen and (max-width: 768px) {
	#logos_main {
		flex-direction: column;
		text-align: center;
	}

	#lang-switch {
		width: 100%;
	}

	footer {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
}