/*
Theme Name: DHTheme
Theme URI: https://doolhoofd.net/themes/DHTheme
Author: Doolhoofd
Author URI: https://doolhoofd.net
Description: This theme was build for Doolhoofd.net
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: DHTheme
Tags: single column, minimal, blog
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/* ============================================== OPBOUW SITE IN VOLGORDE ============================================== */

* {
	padding:0;
	margin:0;
}

:root {
  --accent: #00a650;
  --bg: #f4fbf7;
}


html {
  background-color: var(--bg);
  background-size: cover;
  line-height: 1.75;
  color: var(--text);
  border-top: 1rem solid var(--accent);
}


body {
	font-size: 18px;
	font-family:'Merriweather',Georgia,serif;
	font-weight: 400;
	line-height: 28px;
	color: #000;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0 auto;
	width: 100%;
}

#container {
	width:700px;
	margin:auto;
}

#header {
	height: auto;
	margin: 0 auto;
	text-align: left;
	padding-top:80px;
	padding-bottom:0px;
}

#header h1 {
	margin:0;
	display: block;
}

#stukje {
	padding-top:0px;
	position: relative;
	z-index: 3;
	padding-bottom:20px;
}


p {
	margin:0 0 15px;
}


img {
	border:none;
}


.clear {
	clear:both;
}

#voetnoot{
	overflow: hidden;
	margin: 10px auto 0;
	text-align: left;
	padding-top:0px;
	padding-bottom:40px;
}


/* ============================================== FONTS ============================================== */

@font-face {
    font-family: Georgia,serif;
    font-weight: normal;
    font-style: normal;
}

a {
	color: #00a650;
	text-decoration: none;
	outline: none;
}

a:hover {
	text-decoration: underline;
}


/* ============================================== HEADINGS ============================================== */

h1, h2, h3, h4, h5 {
	font-family: Georgia,serif;
	font-weight: 700;
	padding: 0;
}

h1 {
	margin-bottom: 20px;
	margin-top:50px;
	font-size:36px;
	line-height:45px;
}

h2 {
	margin-bottom: 20px;
	margin-top:45px;
	font-size:28px;
	line-height:35px;
}

h3 {
	font-weight: normal;
	line-height: 18px;
	margin: -6px 0 16px 0;
}


.small {
	font-family: Georgia,serif;
	font=weight: normal;
	font-size: 12px;
	letter-spacing: 1px;
}


h4 {
	margin-bottom: 15px;
	margin-top:35px;
	font-size:18px;
	line-height:25px;
}

h5 {
	margin-top: 30px;
	margin-bottom: 15px;
	font-size:16px;
	line-height:21px;
}

h6 {
	padding: 0;
	text-align: left;
	margin-bottom: 15px;
	font-size:14px;
	line-height:21px;
	font-family:'Merriweather',Georgia,serif;
	font-weight: 300;
}


/* ============================================== RESPONSIVE ============================================== */

/* Retina display */
@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {


}

/* Tablet or Mobile */
@media
only screen and (max-width: 1024px) {
html, body {
	overflow-x: hidden;
}	
}

/* Tablet size  */
@media
only screen and (min-width: 768px) and (max-width: 1024px) {
html, body {
	overflow-x: hidden;
}	
}

/* Mobile size */
@media
only screen and (min-width: 0px) and (max-width: 767px) {
	
	body {
		font-size: 14px;
		line-height: 23px;
	}
	
	img,
	.entry-content img {
		max-width: 100%;
		height:auto;
	}
	
	.alignright,
	.alignleft,
	.aligncenter,
	.alignnone,
	.attachment-dcs_image {
		padding:0;
		height:auto;
		border:0;
		-webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, .1);
		-moz-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, .1);
		box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, .1);
	}
	
	#container {
		width: 90%;
		padding: 0 5%;
	}
	
}