* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background-image: url("background.jpg");
  background-attachment: fixed;
  background-size: auto;
  background-repeat: no-repeat;
  color: #272343;
}

/* Header/logo Title */
.header {
	padding-top: 50px;
	padding-bottom: 10px;
  text-align: center;
  background: #bae8e8;
  color: white;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  position: fixed;
  width: 100%;
  background-color: #272343;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  float: left;
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
  background-color: white;
  padding: 30px;
}

/*  Image, only for div */
div.img img{
  width: 400px;
}

div.cont {
  background-color: white;
}

div.product{
	text-align: center;
	margin: 10px;
	padding: 20px;
	border-radius: 5px;
	float: left;
	width: 300px;
	height: 400px;
	background-color: white;

}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}