/*color scheme:
centered text: #d40404;
*/

/* for older browsers */

header, section, footer, aside, nav, main, article, q {
    display: block; 
}

/* Font-families */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Merriweather', Times, serif;
}

p, q, a, li {
	font-family: 'Merriweather Sans', sans-serif;
}

/* responsive mobile-first row-design */

* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	
	/* border: 1px solid red;  */
}

/* for mobile phones */
[class*="col-"] {
	float: left;
	width: 100%;
}

.row::after {
	content: "";
	clear: both;
	display: block;
}

body {
	margin: 0;
	font-size: 100%;
	background-color: #ffffff;
	color: #000000;
}

img {
	display: block;
	max-width: 100%;	
	height: auto;
	margin: auto;
}

/*
.dim {
	opacity: 0.25;
	filter: alpha(opacity=25); /* For IE8 and earlier 
}
*/


main {
	width: 95%;
	margin: auto;
}


/* 
ol li, ul li {
	padding-bottom: 0.5em;
}
*/

ul {
	list-style-type: none;
	width: 80%;
	padding: 0;
	margin: auto;
}

li a {
    display: block;
    padding: 0.5em 0.5em;
    text-decoration: none;
	text-align: center;
}

/*
.topnav {
	z-index: 2;
	list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    width: 100%;
}
*/

/*
.topnav li {
	float: left;
	padding-bottom: 0;
}
*/

/*
li.right {
	float: right;
}
*/

/*
.topnav li a {
	display: block;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 0.4em 0.6em;
    text-decoration: none;
	transition: background-color 0.2s;
}
*/

/*
.topnav li a:hover {
	color: rgba(255, 255, 255, 0.95);
	background-color: rgba(0, 0, 0, 0.75);
}
*/

/*
.topnav li a:active {
	color: rgba(201, 100, 128, 0.95);
	background-color: rgba(0, 0, 0, 0.75);
}
*/

p {
	font-size: 1em;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.5em;
	text-align: center; /* under construction! */
}

h3 {
	font-size: 1.3em;
}

h4 {
	font-size: 1.1em;
}

h5, h6 {
	font-size: 1em;
}

.textonpicture {
	position: relative;
}

.centeredtext {
	color: #ffffff;
	position: absolute;
	background-color: rgba(212, 4, 4, 0.65);
	padding: 0.1em 0.3em 0.1em 0.3em;
	border: 1px hidden;
    border-radius: 10px;
	margin: 0;
    left: 50%;
    top: 50%;
	margin-right: -50%;
    /* width: 100%; */
    /* text-align: center; */
	transform: translate(-50%, -50%);
	font-size: 2.5em;
}

header img {
	width: 100%;
	height: auto;
}


/* for tablet - or medium size */
@media only screen and (min-width: 600px) {
	.col-m-1 {width: 8.33%;}
	.col-m-2 {width: 16.66%;}
	.col-m-3 {width: 25%;}
	.col-m-4 {width: 33.33%;}
	.col-m-5 {width: 41.66%;}
	.col-m-6 {width: 49.5%;}
	.col-m-7 {width: 58.33%;}
	.col-m-8 {width: 66.66%;}
	.col-m-9 {width: 75%;}
	.col-m-10 {width: 83.33%;}
	.col-m-11 {width: 91.66%;}
	.col-m-12 {width: 100%;}
	main {
		width: 90%;
		margin: auto;
	}

	p {
		font-size: 1em;
	}

	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.875em;
	}

	h3 {
		font-size: 1.5em;
	}
	.centeredtext {
		font-size: 5em;
	}
}


/* for desktop - or full size */
@media only screen and (min-width: 800px) {
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 49.5%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
	main {
		width: 80%;
		margin: auto;
	}
	
	p {
		font-size: 1em;
	}

	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.875em;
	}

	h3 {
		font-size: 1.5em;
	}
	.centeredtext {
		font-size: 7em;
	}
}


/* unvisited link */
a:link {
    color: #d40404;
}

/* visited link */
a:visited {
    color: #d40404;
}

/* mouse over link */
a:hover {
	background-color: #d40404;
    color: #ffffff;
}

/* selected link */
a:active {
    color: #d40404;
}

::-moz-selection { /* Code for Firefox */
    color: #ffffff;
    background: #d40404;
}

::selection {
    color: #ffffff; 
    background: #d40404;
}


footer {
	color: #ffffff;
	background: #000000;
	text-align: center;
}