body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* background: url('fond.jpg') no-repeat center center fixed; */
    /* background-size: cover; */
    background-color: black;
    color: white;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


.form-container {
    margin: 50px auto;
    padding: 20px;
    max-width: 600px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.choice-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.choice-wrapper {
    width: 100%;
    max-width: 100%;
}

input {
    background-color: white;
}

.choice-option, .dilemme-box {
    display: block;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    font-size: 18px;
    color: black;
    text-align: center;
    max-width: 100%;
}

.dilemme-box {
    background-color: rgba(128, 128, 128);
}
.choice-option {
    background-color: white;
}


.choice-option:hover {
    background-color: #f0f0f0;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .choice-option {
    background-color: #007BFF;
    color: white;
    border-color: #007BFF;
}


button {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 12px 20px;
    margin: 20px auto 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: block; /* pour que margin auto fonctionne */
}

input[type="text"], label {
    display: block;
    margin-top: 10px;
    font-size: 18px;
}
