main {
    position: relative;
    width: 100%;
    background: url("../images/background.png");
    background-size: 100%;
}

main h1 {
    text-align: center;
    margin: 0;
    margin-top: 10rem;
    font-size: 2.5rem;
    color: #fff;
}

main img.fleau {
    display: block;
    margin: 2% auto;
    width: 55%;
    border-radius: 10px;
}

/* Sections */
.sections {
    margin: 5rem 0;
}

.toxic img {
    width: 60%;
    border-radius: 10px;
}

.toxic div div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.toxic div div h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: -10px;
}

.toxic div div ol {
    -moz-column-count: 2;
    -moz-column-gap: 10rem;
    -webkit-column-count: 2;
    -webkit-column-gap: 10rem;
    column-count: 2;
    column-gap: 10rem;
}

.toxic div div ol li {
    font-size: 1.1rem;
    margin: .2rem 0;
}

.pay2win img {
    width: 70%;
    border-radius: 10px;
}

.basniveau table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    color: #000;
}

.basniveau table th {
    background: #000;
    color: #fff;
    padding: 1rem;
}

.basniveau table td {
    padding: 1rem;
    border: 1px solid #000;
}

.basniveau table tr:nth-child(odd) {
    background: #eee;
}

.basniveau table tr:nth-child(even) {
    background: #fff;
}

.basniveau table tr:hover {
    background: #ccc;
}

.basniveau table tr.sep {
    border-top: 2px solid #000;
}

.question {
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 80%;
}

.question h2 {
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    margin-bottom: 2rem;
}

.question button {
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    margin: 0 2rem;
    box-shadow: 0 0 5px #000;
    transition: all .2s ease-in-out;
}

.question #yes {
    background: #dc3545;
}

.question #yes:hover {
    background: #c82333;
    transform: scale(1.1);
}

.question #no {
    background: #28a745;
}

.question #no:hover {
    background: #218838;
    transform: scale(1.1);
}

@media screen and (max-width: 1280px) {
    .toxic div div ol {
        -moz-column-gap: 3rem;
        -webkit-column-gap: 3rem;
        column-gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    main img.fleau {
        width: 90%;
    }

    .toxic div div {
        width: auto;
    }

    .toxic img {
        width: 100%;
    }

    .pay2win img {
        width: 100%;
    }

    .question button {
        margin: 0 1rem;
    }
}