main {
    width: 100%;
    height: fit-content;
    background-color: #333333;
    margin-top: 60px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    z-index: 100px;
}

.wrapper-article {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 10px;
}

main h1 {
    font-size: 7.4rem;
    line-height: 1.1;
}

main p {
    font-size: 1.8rem;
    line-height: 1.75;
    margin-top: 10px;
}

main textarea {
    font-size: 1.8rem;
    line-height: 1.75;
    font-style: italic;
    color: #fff;
}

main .main-recap-1 {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-1-text {
    width: 70%;
}

main .main-recap-1-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-recap-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-2-text {
    width: 70%;
}

main .main-recap-2-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-recap-2 h3 {
    text-align: center;
}

main .main-intermediate-results {
    width: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    color: #3b3b3b;
    background: #2b2b2b;
    margin: 0 0 40px 0;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: table;
    overflow-x: auto;
}

main .row {
    display: table-row;
    background: #f6f6f6;
}

main .header{
    font-weight: 900;
    color: #ffffff;
    background: #e47830;
}

main .cell{
  padding: 6px 12px;
  display: table-cell;
}

main .main-recap-3 {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-3-text {
    width: 70%;
}

main .main-recap-3-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-recap-4 {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-4-text {
    width: 70%;
}

main .main-recap-4-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-recap-4 h3 {
    text-align: center;
}

main .main-recap-5 {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-5-text {
    width: 70%;
}

main .main-recap-5-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-recap-6 {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

main .main-recap-6-text {
    width: 70%;
}

main .main-recap-6-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .main-upper-results {
    width: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    color: #3b3b3b;
    background: #2b2b2b;
    margin: 0 0 40px 0;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: table;
    overflow-x: auto;
}

/* MOBILE VERSION */

@media only screen and (max-width: 600px){
    .wrapper-article {
        width: 100%;
    }

    main .main-title h1 {
        display: flex;
        flex-wrap: wrap;
        font-size: 3.8rem;
        line-height: 1.1;
        text-align: center;
    }

    main .main-recap-1 .main-recap-2 p {
        text-align: center;
        padding: 0 20px;
        line-height: 2.5;
    }

    main .main-recap-1 {
        flex-direction: column;
    }

    main .main-recap-1-image, main .main-recap-1-text
    {
        width: 100%;
        text-align: center;
    }

    main .main-recap-2 {
        flex-direction: column;
    }

    main .main-recap-2-image, main .main-recap-2-text
    {
        width: 100%;
        text-align: center;
    }

    main .main-recap-3 {
        flex-direction: column;
    }

    main .main-recap-3-image, main .main-recap-3-text
    {
        width: 100%;
        text-align: center;
    }

    main .main-recap-4 {
        flex-direction: column;
    }

    main .main-recap-4-image, main .main-recap-4-text
    {
        width: 100%;
        text-align: center;
    }

    main .main-recap-5 {
        flex-direction: column;
    }

    main .main-recap-5-image, main .main-recap-5-text
    {
        width: 100%;
        text-align: center;
    }

    main .main-recap-6 {
        flex-direction: column;
    }

    main .main-recap-6-image, main .main-recap-6-text
    {
        width: 100%;
        text-align: center;
    }
}