main {
    width: 1110px;
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(12, 65px);
    grid-template-rows: auto;
    margin: 0 auto;
}

section {
    grid-column: span 12;
    margin: 0 auto;
}

h3 {
    padding-bottom: 6px;
}

.technology {
    padding: 24px 0;
}


.links-info {
            display: flex;
            gap: 8px;
            padding-top: 12px;
            height: 100%;
            width: 100%;
            align-items: baseline;
            a {
                text-decoration: none;

                button {
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    .icon {
                        height: 1rem;
                    }
                }
            }
        }

.models {
    display: flex;
    
    p {
        padding-right: 6px;
    }
}

.table-wrapper {
    display: flex;
}

table {
    background-color: var(--banner-background);
    padding: 12px;
    font-size: 0.8rem;
    height: fit-content;
}

table.first {
    border-radius: 1.5rem 0 0 1.5rem;
}

table.second {
    border-radius: 0 1.5rem 1.5rem 0;

    span {
        color: rgba(0, 0, 0, 0);
    }
}

thead {
    display: flex;
    justify-content: left;
    color: var(--paragraph-text-color);
    font-size: 1rem;
    padding: 6px 0;
}

th[scope="row"] {
    display: flex;
    color: rgb(224, 108, 117);;
    height: 20px;
    align-items: center;
    
}

td {
    padding-left: 4px;
    color: rgb(209, 154, 102);
    height: 20px;
}