body{
    font-family: "Verdana", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


h1{
    font-weight: 700;
    margin-top: 2rem;
    margin-left: 1rem;
    font-size:x-large;
}

h2{
    font-weight: 700;
    margin-top: 2rem;
    margin-left: 1rem;
    font-size:large;
}

h3{
    font-weight: 700;
    margin-top: 2rem;
    margin-left: 1rem;
    font-size:large;
}

p{
    margin-top: 2rem;
    margin-left: 1rem;
    font-size:medium;
}

main, header, section, aside, footer {
    margin: 0;
    padding: 20px;
    /*border: 1px solid #000000;*/
    /*color: #ffffff;*/
}


.header img{
    max-width: 15rem;
}

.content {
   flex:1;
}

.sidebar {
   border-left: 1px solid #000000;
   flex: 0 1 350px;
}

.sidebar article{
    text-align: center;
}

.footer {
    border-top: 1px solid #000000;
    background: #f3f3f3;
}

@media screen and (min-width: 640px){
    .flex-container {
        display: flex;
    }
   
}
.wrapper {
    margin: auto;
    max-width: 110rem;
}

.flex-container-header{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.hero{
    display:flex;
    flex-direction: column;
}    

img{
    max-width: 100%;
}

/* navigatie */

.hero ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #f3f3f3;
}

.hero li {
    float: left;
}

.hero li a {
    display: block;
    color: #666;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 0.8rem;
}

.hero a:hover:not(.active) {
    background-color: #ddd;
}

.hero a.active {
    color: white;
    background-color: #04AA6D;
}


/*product pagina */
/* bron = https://css-tricks.com/designing-a-product-page-layout-with-flexbox/ */

.intro h1{
    flex: 1;
}

.product-filter{
    display: flex;
}

.product-filter h2 {
    flex-grow: 1;
 }

.sort{
    display: flex;
}

.collection-sort {
    display: flex;
    flex-direction: column;
}

.product-filter {
	display: flex;
	padding: 30px 0;
}

.sort {
	display: flex;
	align-self: flex-end;
}

.collection-sort {
    display: flex;
    flex-direction: column;
}

.collection-sort:first-child {
	padding-right: 20px;
}

label {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	line-height: 2em;
	text-transform: uppercase;
}

.products {
	display: flex;
	flex-wrap: wrap;
}

.product-card {
	display: flex;
	flex-direction: column;
	
	padding: 2%;
	flex: 1 16%;
	
	background-color: #FFF;
	box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.25);
}

.product-image img {
	width: 100%;
}

.product-info {
	margin-top: auto;
	padding-top: 20px;
	text-align: center;
}

@media ( max-width: 920px ) {
	
	.product-card {
		flex: 1 21%;
	}
	
	.products .product-card:first-child, 
	.products .product-card:nth-child(2) {
		flex: 2 46%;
	}
	
}

@media ( max-width: 600px ) {
	
	.product-card {
		flex: 1 46%;
	}
	
}

@media ( max-width: 480px ) {
	
	h1 {
		margin-bottom: 20px;
	}
	
	.product-filter {
		flex-direction: column;
	}
	
	.sort {
		align-self: flex-start;
	}
	
}

/*blog */
.blogposts {
    display: flex;
    flex-wrap: wrap;
}

.post{
    background-color: #e7e7e7;
    margin: 2rem;
}

.post img {
	max-width: 20%;
    float: left;
    margin: 1rem;
}

/*contact */

.adres {
    margin: 1rem;
}

.adres li{
    margin-left: 1rem;
    padding: 1rem;
}

/* spotlight */
.spotlight{
    background-color: #ddd;
}