body
{
    margin: 0;
}
#container
{
    background-color: rgb(8, 8, 8);
    margin: auto;
    text-align: center;
    width: 100%;
    display: grid;
    font-family: 'Lato', sans-serif;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-sizing: border-box;
    position: fixed;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.302), 0 2px 6px 2px rgba(60, 64, 67, 0.149); 
    color: white;
}
#shopName 
{
    font-size: 40px; 
    font-family: 'Lato', sans-serif;
}
#shopName a
{
    text-decoration: none;
    color: white
}
#shopName > b
{
    font-weight: 900;
    font: black;
}

#containerSlider
{
    margin: auto;
    width: 90%;
    text-align: center;
    padding-top: 100px;
    box-sizing: border-box;
}
#containerSlider img
{
    width: 100%;
    max-height: 503px;
    text-align: center;
    align-content: center;
}
/* ----------------------------- MEDIA QUERY --------------------------- */

@media(max-width: 732px)
{
    #containerSlider img
    {
        height: 12em;
    }
}
@media(max-width: 500px)
{
    #containerSlider img
    {
        height: 10em;
    }
}

@media(max-width: 750px)
{
    #shopName
    {
        font-size: 28px;
    }
}

@media(max-width: 650px)
{
    #shopName
    {
        font-size: 24px;
    }
}
@media(max-width: 550px)
{
    #container 
    {
        padding: 20px 25px;
    }
}