/* Importation de la police Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --red: #9D2235;
    --black: #000000;
    --white: #ffffff;
    --gray: #D3D3D3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--red), var(--black));
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
    color: var(--white);
}

#quiz-container {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    color: var(--black);
    margin-top: 100px;
    margin-bottom: 100px;
}

h1, h2 {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    text-align: justify;
    margin-bottom: 20px;
    color: var(--black);
}

.highlight {
    color: var(--red);
    font-weight: bold;
}

label {
    display: block;
    background: var(--gray);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--black);
}

label:hover {
    background: var(--red);
    color: var(--white);
}

input[type="radio"]:checked + label {
    background: var(--red);
    color: var(--white);
    font-weight: bold;
}

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

button, #recom, #deb {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 15px;
    text-decoration: none;
}

button:hover, #recom:hover, #deb:hover {
    background: var(--black);
}


#logo {
    position: fixed;
    top: 10px;
    left: 20px;
    width: 15%;
}
.r{
    width: 100%;
}
ul {
    text-align: left;
}