/*
File:Layout.css
Author:Dimatha
For Coursera module2
*/


/********** Base styles **********/
* {
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}



h1{
    text-align: center;
    margin: 0;
    margin-top: 35px;
    margin-bottom: 30px;
    color: #191922;
}
h2 {
    display: inline-block;
    border: 1px solid black;
    padding: 5px;
    width: 150px;
    text-align: center;
    margin-top: -13px;
    margin-bottom: 0;
    position: absolute;
    right: -1px;
    top: 12px;
    color: #fff;
}
.chicken {
    background-color: #666699;
}

.beef {
    background-color: #800000;
}

.sushi {
    background-color: #cc6600;
}

.heading {
    background-color: #d9d9d9;
    border: 1px solid black;
    position: relative;
    min-height: 200px;
    margin-right: 15px;
    margin-left: auto;
    margin-bottom: 15px;
    padding: 20px;
    padding-top: 35px;
    box-sizing: border-box;
    min-width: 300px;
    overflow: hidden;

}        


/************* Responsive Framework *************/
.row {
    width: 100%;
    margin: 0;
    padding: 15px;
    
}
/************* Desktop View *************/
@media (min-width: 992px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{
        float: left;
    }
    .col-lg-1 {
        width: 8.33%;
    }
    .col-lg-2 {
        width: 16.66%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33%;
    }
    .col-lg-5 {
        width: 41.66%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.33%;
    }
    .col-lg-8 {
        width: 66.66%;
    }
    .col-lg-9 {
        width: 74.99%;
    }
    .col-lg-10 {
        width: 83.33%;
    }
    .col-lg-11 {
        width: 91.66%;
    }
    .col-lg-12 {
        width: 100%;
    }
}

/************* Tablet View *************/
@media (min-width: 768px) and (max-width: 991px) {
     .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{
        float: left;
    }
    .col-md-1 {
        width: 8.33%;
    }
    .col-md-2 {
        width: 16.66%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33%;
    }
    .col-md-5 {
        width: 41.66%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33%;
    }
    .col-md-8 {
        width: 66.66%;
    }
    .col-md-9 {
        width: 74.99%;
    }
    .col-md-10 {
        width: 83.33%;
    }
    .col-md-11 {
        width: 91.66%;
    }
    .col-md-12 {
        width: 100%;
    }
}
