body {
font-family: 'Arial', sans-serif; 
text-align: center; 
margin: 20px; 
background-color: maroon; 
color: #333}

.boutons {
    margin: 20px 0; 
    border-bottom-color: white;
	}

.boutons button {
    margin: 0 5px 10px;
}

.runes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    max-width: 600px;
}

.rune {
width: 60px; 
height: 80px; 
background-color: #5a3e2b; 
border-radius: 10px; 
display: flex;
justify-content: center;
align-items: center; 
color: white; 
font-size: 36px; 
font-weight: bold; 
cursor: pointer; 
transition: transform 0.3s, 
background-color 0.3s; 
user-select: none; 
background-image: url('Images/dos-rune.jpg'); 
background-size: cover; 
border-color: white; 
border-style: double}

.rune.retournee {
    background-image: none;
    background-color: #e0d8c0;
    color:#5a3e2b;
}

.rune:hover {
    transform: scale(1.05);
}

.tirees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tiree {
    width: 300px;
    height: 350px;
    border: 2px solid #5a3e2b;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e0d8c0;
    padding: 5px;
    box-sizing: border-box;
}

.tiree .symbole {
    font-size: 36px;
    margin-bottom: 5px;
    color: #5a3e2b;
}

.tiree .nom {
    font-weight: bold;
    margin-bottom: 3px;
    color: #5a3e2b;
}

.tiree .signification {
    font-size: 16px;
    text-align: center;
    color: #5a3e2b;
}

button {
padding: 10px 20px; 
font-size: 16px; 
background-color: #5a3e2b; 
color: white; 
border: none; 
border-radius: 5px; 
cursor: pointer; 
border-bottom: thin;
}

button:hover {
    background-color: #3a2619;
}
