.jeux-wrapper {
    display: flex;
    flex-direction: column;
}

.jeu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 150px;
}

.jeu-container h2,
.jeu-container h3 {
    text-align: center;
}

.jeu-container h2 {
    font-family: 'Uncial Antiqua', serif;
    margin-top: 0;
}

.jeu-container img {
    width: 300px;
}

.jeu-infos {
    width: calc(100% - 350px);
}

.jeu-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 20px auto;
    width: fit-content;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.row img {
    width: 50px;
}

.green .jeu-link {
    display: block;
    color: var(--text);
    background: var(--orange);
    font-family: 'Uncial Antiqua', serif;
    padding: 10px 35px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: capitalize;
    margin: auto;
    width: fit-content;
}

.green .jeu-link:hover {
    color: var(--orange);
    background: var(--text);
}