:root{
    --white-color: #fff;
    --black-color: #000;
    --text-color: #333;
}
*{
    box-sizing: inherit; /* ke thua thuoc tinh truoc*/
}
html{
    font-size: 100%;
    box-sizing: border-box;
    font-family: 'Inclusive Sans', sans-serif;
    
}
.grid{
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;   
}
.grid__full-width{
    width: 100%;
}
.grid__row{
    display: flex;
    flex-wrap: wrap;
}