/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

 /* My code */

.p-text{
    float: left;
    text-align: center;
    width: 500px;
    margin:30px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

body{
    background-color: rgb(184, 184, 200);
}

.wrapper{
    margin: 0 auto;
    width: auto;
    height: auto;
}

.wrapper label {
    margin-right: 10px;
    padding: 5px;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* Standaardtekstgrootte */
#message {
	font-size: 75px;
	text-align: center;
}	

.success-message {
	color: green;
	font-weight: bold;
	text-align: center;
}

.img-bord-op-maat-logo{
    line-height: 250%;
    width: 500px;
    height: 219px;
    background-image: url(img/Douglas_plank1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Cursive; 
}

textarea[type="tekst"]
{
    font-size:75px;
    text-align: center;
}

#sideView {
    width: 150px;
    height: 30px;
    border-top-left-radius: 10px; /* Afgeronde hoek linksonder, overeenkomstig met de textarea */
    border-top-right-radius: 10px;
    background-image: url(img/Douglas_plank1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.img-afwerking{
    padding: 10px;
    line-height: 210px;
    width: 218px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(img/45-graden.png);
}

.page-title{
    padding: 10px;
    color: white;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: 500;           /*thickness*/
}


/*navigation*/
nav {
    width: 100%;
    height: 50px;
    background-color: #fff;
}

.DE { /*text aan de linkerkant van de navigatie*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
    font-weight: 500;           /*thickness*/
    font-size: 20px;
    line-height: 55px;
    float:left;
    text-decoration: none;  /* get rid of the underline*/
}

nav ul {    /*navigatie text plaatsing*/
    text-align:center;
}

nav ul li {                 /*navigatie text*/
    list-style:none;        /*get rid of the dots*/
    display: inline-block;  /* puts the links in a row*/
    /*float: left;*/
    line-height: 50px;      /* center the text*/
    position: relative;
}

nav ul li a {               
    display:block;          /*puts a block around the links*/
    text-decoration: none;  /* get rid of the underline*/
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:black;
    padding: 0 20px;        /*put the words appart*/
}

nav ul li ul {              /*dropdown menu*/
    display: none;          /*puts a block around the links*/
    position: absolute;
    background-color: #fff;
    padding: 0px 0px;
    border-radius: 0px 0px 5px 5px;
}

nav ul li:hover ul{     /*When hovering we want to show the unnoted list*/
    display: block;
}

nav ul li ul li{            /*dropdown menu list item*/
    width: 130px;
    border-radius: 0px 0px 5px 5px;
}

nav ul li ul li a{              /*dropdown menu angertag*/
    padding: 12px 20px;         /*put the words appart*/
}

nav ul li ul li a:hover {       /*dropdown menu hover*/
    background-color: rgb(184, 184, 184);
    border-radius: 0px 0px 5px 5px;
}

nav ul li a:hover {             /*when you hover above the navigation the color changes*/
    color:white;
    background-color: rgb(184, 184, 184);
}

form {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0 auto; 
    width: 300px;
}

input {
    width: 100%;
    padding: 5px;
    margin: 10px;
}

.tabs {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.tab {
    margin-right: 10px;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
    font-weight: 500;           /*thickness*/
    font-size: 20px;
    line-height: 55px;
    float:left;
    text-decoration: none;  /* get rid of the underline*/
}

/* Stijl voor actieve tab */
.active-tab {
    font-weight: bold;
}

/* Stijl voor tab-inhoud */
.tab-content {
    display: none;
}

/* Stijl voor de zichtbare tab-inhoud */
.active-tab-content {
    display: block;
}

/* Stijl voor codeblokken */
pre {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    overflow: auto;
    font-family: 'Courier New', monospace;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 5px;
    margin: 10px;
    resize: vertical;
    max-height: 300px;
}

input, textarea {
    outline: none;
    border: 1px solid #ddd;
}

/* Text in form */
::placeholder {
    color: rgb(184, 184, 184);
    opacity: 1;
}

#footer {
    position:relative;
    width: 100%;
    height: 60px;
    background-color: #fff;
    margin-top: -100px;
    clear: both;
}

.footer {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
