*{
    box-sizing: border-box;
    margin: 0;
	padding: 0;
	border: 0;
}

body, html {
    margin: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    /*color:  #418F42;*/
    /*color: #fdea94fb;*/
    background-color: #D1DF9C;
    /*color: rgb(254, 254, 254);*/
    color: black;
    height: 100%;
    letter-spacing: 1px;
    line-height: 1.5;
  }

  #container {
    background-image: url("ococo_content/packaging.jpg");
    /*Full height*/
    height: 100%;
    background-attachment: fixed;
    /*creating the parallax scrolling effect*/
    /*position: relative;*/
    /*Center and scale the image nicely*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*border: solid black 1px;*/
}
.navbar {
    margin-top: 0px;
    margin-left: 30px;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.navitem {
    width: 35px;
    height: 5px;
    margin: 6px 0;
    transition: 0.4s;
    /*background-color: #333;*/
    background-color: rgb(254, 254, 254);
}
.navbar #item {
    display: none;
    margin-left: 30px;
    /*color: rgb(254, 254, 254);*/
    color:black;
}
/*Rotate first bar*/
.change .home {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
/*Fade out the second bar*/
.change .blog {
    opacity: 0;
}
/*Rotate last bar*/
.change .shop {
    -webkit-transform: rotate(45deg) translate(-8px, 8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
.home {
    /*margin-left: 0%;
    color: black;*/
}
.blog {
    /*margin-left: 2%;
    color: black;*/
}
.shop {
    /*margin-left: 2%;
    color: black;*/
}
a:hover {
 /*background-color: #E7E6E2;*/
 text-decoration: underline;
    
}

a {
    text-decoration: none;
    color: black;
    /*color: rgb(254, 254, 254);*/
}
a:visited {
    text-decoration: none;
    color: black;
    /*color: rgb(254, 254, 254);*/
}
#products {
    width: 90%;
    /*display: table;*/
    height: 420px;
    border: solid black 1px;
    margin-top: 0px;
    margin-left: 5%;
    margin-right: 5%;
    background-color: #D3D5D2;
    border-radius: 5px;
    padding: 1%;
    overflow: scroll;
    display: block;
    margin-top: 50px;
}

.columns {
    width: 16.5%;
    height: 400px;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
    border-radius: 10px;
}

.columns img {
    width: 100%;
    height: 100%;
}

.paragraph {
    width: 16.5%;
    height: 400px;
    float: left;
    margin-left: 0%;
    margin-right: 0%;
    border-radius: 10px;
    /*background-color: green;*/
    /*background-color: rgb(254, 254, 254);*/
    background-color: #D3D5D2;
    color: black;
    padding: 1%;
}

/* For mobile phones: */

@media only screen and (max-width: 480px) { 	
    /*only CSS that should work when the monitor is 480px-wide goes here*/
    #products {width: 90%; margin-left: 5%; margin-right: 5%;}
    .columns {width:50%;}
    .paragraph {width:50%;}
}

/* For tablets: */

@media only screen and (max-width: 768px) and (min-width: 480px) { 	 
    #products {width: 90%; margin-left: 5%; margin-right: 5%;}
    .columns {width:25%;}
    .paragraph {width:25%;}
} 

/* For desktop: */

@media only screen and (min-width: 769px) and (max-width: 1280px) {
    #products {width: 90%; margin-left: 5%; margin-right: 5%;}
}

/* For huge desktop: */

@media only screen and (min-width: 1281px) {
    #products {width: 90%; margin-left: 5%; margin-right: 5%;}
}