body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	flex-direction: column;
	background-color: #f4f4f4;
	background-image: url(img/wallpaper.jpg);
	background-attachment: fixed;
	background-size: 100%;
	overflow: hidden;
	cursor: url('img/sword.png'), auto;
}
.result {
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 20px;
}
#content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
#main {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Définit deux colonnes avec des largeurs relatives */
    gap: 20px; /* Ajoute un espace entre les colonnes */
}

#participants {
    /* margin-top: 60px; */
	margin-right: 40px;
}

#roue {
    /* Styles pour la section de la roue */
}
.wheel-container {
	position: relative;
	width: 600px;
	height: 600px;
}
.wheel {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid #333;
	transition: transform 4s ease-out;
}
.arrow {
	position: absolute;
	top: 49%;
	right: -45px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid red;
}
button {
	margin-top: 20px;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 30px;
}
canvas#confetti {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}
img.falling {
	position: absolute;
	width: 150px;
	height: 150px;
	pointer-events: none;
}

ul {
  list-style-type: none; /* Supprime les puces par défaut */
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 10px;
  padding: 2px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

li:hover {
  background-color: #f0f0f0;
}

ol {
  list-style-type: decimal; /* Utilise des nombres décimaux */
  padding-left: 20px;
}

nav {
	margin: 5%;
}