* {
	font-family: Arial, sans-serif;
	font-size: 20px;
}
  

body {
	background-color: #ebe4ee; /* Discord dark gray */
}


.header {
	position: relative;
	align-items: center;
	background-color: #181A1B;
	border-radius: 10px;
	padding : 20px;
	box-shadow: 6px 6px 25px rgba(0, 0, 0.5, 0.7);
}

h1 {
	font-size: 40px;
	font-family: Arial, sans-serif;
	color: white;
	position: absolute;
	top: 60px; /* Ajuste la valeur selon tes besoins */
	left: 220px; /* Ajuste la valeur selon tes besoins */
}


.p1 {
	padding: 30px;
}

.toggleThemeButton {
	box-shadow: 6px 6px 25px rgba(0, 0, 0.5, 0.7);
	border-radius: 6px;
	position: fixed;
	bottom: 10px; /* Ajuste cette valeur selon tes besoins */
	right: 10px; /* Ajuste cette valeur selon tes besoins */
}

.toggleThemeButton:hover {
	background-color: #222425; /* Nouvelle couleur de fond au survol */
	color: #fff; /* Nouvelle couleur du texte au survol */
  }


.dark-mode {
	background-color: #36393F; /* Fond sombre */
	color: #FFFFFF; /* Texte clair */
  }


