@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, #9796f0, #fbc7d4); /* Dégradé de couleurs */
    color: #34495e;
}

.wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(233, 222, 227, 0.9); /* Couleur de fond avec opacité */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #0a0a0a;
    font-family: 'Courgette', sans-serif;
    margin: 4vw;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

#couleur {
    width: 100px;
    height: 100px;
    margin: 20px auto; /* Centrer horizontalement */
    border: 2px solid #2c3e50; /* Couleur de la bordure */
    border-radius: 8px;
}

.reponses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Centrer horizontalement */
}

.reponse {
    width: calc(50% - 10px);
    padding: 10px;
    text-align: center;
    background-color: #3498db; /* Couleur de fond */
    color: #fff; /* Couleur du texte */
    border-radius: 8px;
    cursor: pointer;
}

.score{
    margin-top: 20px;
    text-align: center;
}

a {
    display: block;
    text-align: center;
    color: #3498db; /* Couleur du lien */
    margin-top: 20px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}