* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* General */

.separation {
    margin: 20px 5px;
}

.separation .main_title {
    text-align: center;
}

.separation .main_title h1 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(to bottom, #2193b0, #6dd5ed);
    background: linear-gradient(to bottom, #2193b0, #6dd5ed);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.separation .sub_title {
    text-align: center;
}

.separation .sub_title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0;
    color: black;
}

/* =========== MAIN =========== */

main {
    margin-bottom: 100px;
}

.main_ilustration {
    width: 100%;
    height: 500px;
    background-image: url('./../../html/Suggestions/img/cover-page.jpeg');
    background-size: cover;
    margin-bottom: 100px;
}

.background_theme {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-top: 80px;
}

.background_theme img {
    width: 100%;
    background-size: cover;
}

/* =========== TABLE =========== */

table {
    width: 100%;
}

table a {
    color: cornflowerblue;
}

table, th, td {
    border: 1px solid silver;
    border-collapse: collapse;
}

table .bold {
    font-weight: 600;
}

tr {
    max-width: 33.33%;
    overflow: hidden;
}

th, td {
    padding: 5px;
}

th {
    text-align: center;
    color: black;
    font-weight: 400;
    font-size: 16px;
    background: cornsilk;
}

td {
    color: gray;
    font-weight: 400;
    font-size: 14px;
}

table ul li {
    margin: 10px 0;
}

table ul li i {
    color: rgb(102, 102, 102);
}

/* =========== RESPONSIVE =========== */

@media (min-width: 400px) {

    .background_theme {
        height: 170px;
    }

    .separation {
        margin: 50px 7px;
    }

}

@media (min-width: 500px) {

    .separation {
        margin: 50px 10px;
    }

    .background_theme {
        height: 200px;
    }

    th, td {
        padding: 7px;
    }
    
}

@media (min-width: 600px) {

    .separation {
        margin: 60px 12px;
    }

    .separation .main_title h1 {
        font-size: 27px;
    }

    .background_theme {
        height: 300px;
    }

    th, td {
        padding: 8px;
    }

    th {
        font-size: 17px;
    }
    
    td {
        font-size: 15px;
    }
    
}

@media (min-width: 700px) {

    .separation {
        margin: 60px 15px;
    }

    th, td {
        padding: 10px;
    }
    
}

@media (min-width: 800px) {

    .background_theme {
        height: 350px;
    }

    th {
        font-size: 18px;
    }
    
    td {
        font-size: 16px;
    }
    
}

@media (min-width: 900px) {

    .separation {
        margin: 80px 20px;
    }

    .separation .main_title h1 {
        font-size: 30px;
    }
    
}

@media (min-width: 1000px) {

    .background_theme {
        height: 450px;
    }

    .separation {
        margin: 90px 30px;
    }

    th, td {
        padding: 12px;
    }
    
}

@media (min-width: 1200px) {

    .background_theme {
        height: 500px;
    }

    .separation {
        margin: 100px 40px;
    }
    
}

@media (min-width: 1400px) {

    .separation {
        margin: 100px 50px;
    }

    .background_theme {
        height: 600px;
    }

    th, td {
        padding: 15px;
    }
    
}