/* modifications diverses sur plusieurs élements */
a {
	text-decoration: none;
	color: black;
	text-align: center;
}
ul.menu:hover {
	background-color: #ECF0F1;
}
h4:hover {
	background-color: #ECF0F1;
}
h3 {
	font-weight: normal;
}
ul {
	list-style-type: none;
	padding-left: 20px;
	padding-right: 20px;
}
/* paramètres liés à toutes les pages */
html, body {
	font-family: 'Roboto';
	margin: 0;
	min-width: 420px;
	height: 100%;
	position: relative;
}
body {
	overflow-y: scroll;
}
/* tout */
container {
	display: block;
	position: relative;
	height: 100%;
}
/* contient les 2 menus 
> update du 07/08/2024: plus qu'1 menu désormais
*/
.nav {
	margin: 0;
	padding: 0;
}
/* menu principal (accueil + touhou et le reste) */
.main-menu {
	display: flex;
	background-color: #FFFFFF;
	justify-content: center;
	max-height: 65px;
	border-bottom: 2px solid #f4f4f4;
}
.menu {
	margin: 0;
	display: flex;
}
.menu-has-sub-menu {
	position: relative;
	display: inline-block;
}
.menu-has-sub-menu:hover .sub-menu {
	display: block;
}
.sub-menu {
	display: none;
	position: absolute;
	width: fit-content;
	background-color: #FFFFFF;
	border: #f4f4f4;
	font-family: 'Happy Monkey';
	border-top: 1px solid #ECF0F1;
	border-left: 2px solid #f4f4f4;
	border-right: 2px solid #f4f4f4;
	border-bottom: 2px solid #f4f4f4;
	padding-left: 0px;
	padding-right: 0px;
	font-size: 18px;
	text-align: center;
}
.sub-menu-text .sub-menu-text:hover {
	padding-top: 20px;
	padding-bottom: 20px;
}
.sub-menu-text:hover {
	background-color: #ECF0F1;
}
.sub-menu-scroll {
	width: 10px;
	height: 10px;
}
/*menu secondaire (insta, osu!, discord) : utiliser au besoin
.main-menu-socials {
	display: flex;
	background-color: #FFFFFF;
	justify-content: center;
	border-top: 2px solid #f4f4f4;
	border-bottom: 2px solid #f4f4f4;
}
*/
/*accueil sur la page principale (titre, sous-titre, image)*/
.home {
	height: 100%;
	margin-top:25px;
	margin-bottom: 25px;
	margin-left: 25px;
	margin-right: 25px;
}
.maintenance-main-title {
	display: flex;
	justify-content: center;
	font-size: 30px;
	font-weight: bold;
	font-family:'Happy Monkey';
	margin-top: 20px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.maintenance-sub-title {
	display: flex;
	justify-content: center;
	font-size: 25px;
	font-style: italic;
	font-family:'Happy Monkey';
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	text-align: center;
}
.maintenance-main-text {
	display: flex;
	justify-content: center;
	font-size: 30px;
	font-family:'Happy Monkey';
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.maintenance-main-img {
	margin: auto;
	width: fit-content;
}
.maintenance-img {
	max-width: 200px;
	max-height: 200px;
	margin-top: 20px;
}

/*footer complet (logo, copyright et compteur)*/
.footer {
	background-color: #FFFFFF;
	border-top: 2px solid #f4f4f4;
	justify-content: center;
	position: fixed;
	height: 120px;
	max-height: 120px;
	bottom: 0;
	left: 0;
	right: 0;
}
.footer-logo {
	max-width: 25px;
	max-height: 25px;
	margin-bottom: 5px;
}
.footer-copyright {
	font-size: 15px;
	text-align: center;
	margin-bottom: 5px;
}
.footer-count {
	width: 75px;
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3px;
}
.footer-flag {
	border: 1px solid #f4f4f4;
	max-width: 12px;
	max-height: 7px;
}
