* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, input {
    vertical-align: bottom;
    width: 100%;
}

ul, li, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jeu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    background: white;
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 600px;
    max-width: 90%;
}

.jeu h1 {
    font-size: 2rem;
    color: #333;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.buttons button {
    background: #709775;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buttons button:hover {
    transform: scale(1.1);
    background: #415D43;
}

.resultat {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
}

.score {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
}

#new-game {
    background: #709775;
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

#new-game:hover {
    transform: scale(1.1);
}
