@font-face {
    font-family: 'open_sansbold_italic';
    src: url('OpenSans-BoldItalic-webfont.eot');
    src: url('OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-BoldItalic-webfont.woff') format('woff'),
         url('OpenSans-BoldItalic-webfont.ttf') format('truetype'),
         url('OpenSans-BoldItalic-webfont.svg#open_sansbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansbold';
    src: url('OpenSans-Bold-webfont.eot');
    src: url('OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Bold-webfont.woff') format('woff'),
         url('OpenSans-Bold-webfont.ttf') format('truetype'),
         url('OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansitalic';
    src: url('OpenSans-Italic-webfont.eot');
    src: url('OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Italic-webfont.woff') format('woff'),
         url('OpenSans-Italic-webfont.ttf') format('truetype'),
         url('OpenSans-Italic-webfont.svg#open_sansitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sanslight';
    src: url('OpenSans-Light-webfont.eot');
    src: url('OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Light-webfont.woff') format('woff'),
         url('OpenSans-Light-webfont.ttf') format('truetype'),
         url('OpenSans-Light-webfont.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sanslight_italic';
    src: url('OpenSans-LightItalic-webfont.eot');
    src: url('OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-LightItalic-webfont.woff') format('woff'),
         url('OpenSans-LightItalic-webfont.ttf') format('truetype'),
         url('OpenSans-LightItalic-webfont.svg#open_sanslight_italic') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansregular';
    src: url('OpenSans-Regular-webfont.eot');
    src: url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Regular-webfont.woff') format('woff'),
         url('OpenSans-Regular-webfont.ttf') format('truetype'),
         url('OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
	--kleurtekst: #000;
	--kleurtekst-special: #888;
	--kleurtekst-header: #fff;
	
	--achtergrond: #fff;
	--achtergrond-header: #888;
	
	--kleurrand: #888;
	--kleurrand-licht: #ccc;
	
	
	--achtergrond-knop: #eee;
	--achtergrond-knop-hover: #ddd;
	--tekst-knop: #000;
	--rand-knop: #888;
	
	
	--grootte-onderbalk: 48px;
}

* {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 16px;
	font-family: 'open_sanslight';
	text-decoration: none;
	box-sizing: border-box;
	font-size: 20px;
}

html,
body {
	width: 100%;
	height: 100%;
	background: #fff;
}

.container {
	width: 100vw;
	height: 100vh;
	background-image: url(images/DSC9034kjpg.jpeg);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.logo {
	position: absolute;
	width: 100vw;
	left: 0px;
	top: 0px;
	height: 12vh;
	/* padding: 1vh; */
	background-color: rgba(255, 255, 255, 0.95);
	text-align: center;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

.logo img {
	max-width: 90vw;
	max-height: 100%;
}

.knoppen {
	position: absolute;
	top: 60vh;
	width: 100vw;
	max-width: 100%;
	text-align: center;
}

.knop {
	display: inline-block;
	background: rgba(255, 221, 14, 0);
	padding: 2vh 2vw;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 5px;
	margin: 10px 10px;
	font-family: 'open_sansregular';
	font-size: 24px;
	transition: 0.25s background, 0.25s color, 0.25s border, 0.25s box-shadow;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}

.knop:hover {
	/* background: rgba(255, 255, 255, 0.25); */
	background: rgba(255, 221, 14, 1);
	border: 2px solid rgba(255, 221, 14, 1);
	color: #000;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}