main section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}
    main section:nth-of-type(1) {
        background-image: url(../img/bg-option-7.webp);
        background-repeat: no-repeat;
        min-height: calc(100vh - 100px);
    }

    main section:nth-of-type(2) {
        background-image: url(../img/bg-option-6.webp);
        background-repeat: no-repeat;
        rotate: calc(180deg);
        min-height: calc(100vh - 100px);
    }
        main section:nth-of-type(2) .limit-container {
            rotate: calc(180deg);
        }

    main section:nth-of-type(3) {
        min-height: calc(100vh - 100px);
        background-image: url(../img/bg-option-8.webp);
        background-repeat: no-repeat;
    }

main .limit-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
    main section:nth-of-type(1) .limit-container a,
    main section:nth-of-type(2) .limit-container a,
    main section:nth-of-type(3) .limit-container a {
        min-width: 100px;
        padding: 20px;
        background-color: var(--primary-color);
        border-radius: 5px;
        font-weight: bold;
        transition: 0.3s ease-in-out;
        text-decoration: none;
        color: var(--light-color);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    main .limit-container p{
        text-align: center;
    }
        main li {
            padding-top: 8px;
        }

/*   T A B L E   */

    table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: fixed;
    }
        thead tr {
            text-align: left;
        }
            tr td:first-of-type{
                font-weight: bold;
            }
        th:first-of-type{
            border-radius: 10px 0 0 0;
        }
        th:last-of-type{
            border-radius: 0 10px 0 0;
        }
        th,
        td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--dark-color);
        }
            td:last-child {
                text-align: center;
            }
            table a{
                background-color: var(--primary-color);
                border: none;
                padding: 10px;
                border-radius: 5px;
                color: #FFF;
                text-decoration: none;
                font-weight: 500;
            }
        th {
            background-color: var(--primary-color);
            color: #FFF;
        }