* {
	text-decoration: none;
	/*pour que le lien ne soit pas souligné*/
	box-sizing: border-box;
	/* je demande que les border soient intégrées au contenu ciblé*/
	list-style-type: none;
}

html {
	scroll-behavior: smooth;
}


body {
	background-color: black;
}

.grid_12 h1{
	font-family: 'Rajdhani', 'Verdana', sans-serif;
	font-style: normal;
	color: white;
	font-size: 55px;
	text-align: left;
	margin-top: 10%;
	margin-left: 4%;
}


.menu {
	margin-bottom: 10%;
	margin-top: 5%;
	text-align: left;
}

.menu ul li {
	display: block;
	margin: 30px;
}

.menu ul li a {
	font-family: 'Rajdhani', 'Verdana', sans-serif;
	font-style: normal;
	font-size: 23px;
	line-height: 1.9;
	color: white;
	word-wrap: break-word;
}

.menu ul li a:hover {
	text-decoration-line: underline;
	color: orangered;
}

.menu ul li a:visited {
	text-decoration-line: underline;
	color: yellow;
}

