body {
    background-image: url('img_background.webp');
    background-size: cover; /* Pour couvrir tout l'écran */
    background-position: center; /* Pour centrer l'image */
    background-repeat: no-repeat; /* Pour éviter la répétition */
}
.centered {
	 display: flex;
    justify-content: center; /* Espacement égal entre les éléments */
    align-items: center; /* Alignement au début de l'axe transversal */
    height: 100vh;
    width: 800px; /* Utilise toute la hauteur de la fenêtre */
    margin: 0 auto; /* Pour centrer horizontalement */
}

.horizontal-align {
    display: flex;
    flex-direction: row; /* Les éléments enfants sont disposés en colonne */
}

/* Style spécifique pour chaque div */
.box {
    width: 200px;
    height: 200px;
    background-color: rgba(240, 240, 240, 0.8); /* Couleur de fond avec transparence */
    border: 1px solid #ccc;
    border-radius: 2%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); /* Ombre portée légère */
}
.box2 {
    min-width: 250px;
    min-height: 600px;
    background-color: rgba(240, 240, 240, 0.8);
    border: 1px solid #ccc;
    border-radius: 2%;
    text-align: center;
    display: flex; /* Centre le texte à l'intérieur */
    flex-direction: column; /* Les boîtes sont disposées en colonne */
    justify-content: flex-end; /* Alignement au bas */
    align-items: center;
    padding: 10px;
    margin: auto;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); /* Ombre portée légère */
}

/* Styles pour les boutons radio */
.color-input {
    display: none;
}

.color-input:checked + .color-label {
    border: 1px solid black;
}

.color-label {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vert{
	background-color:#2aa966;
}
.rouge{
	background-color:#f1290e;
}
.jaune{
	background-color:#f1ea0e;
}
.bleu{
	background-color:#0eb3f1;
}
.orange{
	background-color:#f39018;
}
.violet{
	background-color:#c519cb;
}
.blanc{
	background-color:#CCCCCC;
}
.noir{
	background-color:#000000;
}
.gris{
    background-color:#808080;
}
td {
	width:40px;
	height:40px;
	border-radius: 50%;
	margin: 100px;
	
}