@charset "UTF-8";
/* CSS Document */

@font-face { font-family: slordPaintingsFont; src: url('../fonts/Raleway-Medium.ttf') } 

@font-face { font-family: slordPaintingsFont; src: url('../fonts/Raleway-MediumItalic.ttf'); font-style:italic; }

* {-webkit-font-smoothing: antialiased;}

html, body {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-family:slordPaintingsFont;
}

img::selection {
    color: none;
    background: none;
}
/* For Mozilla Firefox */
img::-moz-selection {
    color: none;
    background: none;
}

#masthead {
	width: 100%;
	padding-bottom: 10px;
	height: 50px;
}

#logo {
	margin-top: 10px;
	margin-left: 10px;
	height: 50px;
	display: table;
}

#logo span {
	display: table-cell;
	vertical-align: middle;
	font-size: 2em;
}

#social-media {
	position: absolute;
	top: 10px;
	right: 10px;
}

.content {
	padding: 2em;
	line-height: 1.5em;
}

.content img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

/* MENU BUTTON */

#menu-btn {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 8px 0px;
}

#menu-icon-container {
	width: 20px;
	display: inline-block;
}

#menu-btn span {
	background-color: black;
	margin-top: 3px;
	height: 3px;
	width: 100%;
	display: block;
}

#menu-btn span:first-of-type {
	margin-top: 0px;
}

#menu-btn span:first-of-type, #menu-btn span:last-of-type {
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;

	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#menu-btn span:nth-child(2) {
	-webkit-transition: .1s ease-in-out;
	-moz-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}

#menu-btn.open span:first-of-type {
	-webkit-transform: rotate(38deg);
	-moz-transform: rotate(38deg);
	-o-transform: rotate(38deg);
	transform: rotate(38deg);
}

#menu-btn.open span:last-of-type {
	-webkit-transform: rotate(-38deg);
	-moz-transform: rotate(-38deg);
	-o-transform: rotate(-38deg);
	transform: rotate(-38deg);
}

#menu-btn.open span:nth-child(2) {
	visibility: hidden;
}

#menu-btn:hover {
	background-color: orange;
}

#menu-btn:hover span {
	background-color: white;
}

/* MENU: */

#menu {
	display: none;
}

#menu ul {
	margin:0;
	padding:0;
}

#menu ul li {
	list-style: none;
	text-align: center;
	border-bottom: 1px solid black;
}

#menu ul li a:hover, 
#menu .popupbtn:hover {
	background: #666666;
	color: white;
}

#menu ul li a {
	color: black;
	text-decoration: none;
	display: block;
}

#menu .popupbtn {
	cursor: pointer;
}

#currentSection {
	font-weight: 950;
}

.submenu-container {
	display: none;
	background: #cccccc;
	border-bottom: 1px solid black !important;
}

.submenu li {
	border-bottom: 0px solid black !important;
}

.open-submenu {
	background-color: #cccccc;
	border-bottom: 0px solid black !important;
}

.open-submenu::after {
	content: ":";
}

/*FORMS: */

input[type='submit'],input[type='button'],input[type="reset"] {
	background-color: #F63;
	color:#FFF;
	font-weight: bold;
	text-transform: uppercase;
	font-size:1.25em;
	border: solid 1px #000;
	-webkit-appearance: none;
	cursor: pointer;
	/* rounded corners: */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
}

input[type='submit']:hover,input[type='button']:hover,input[type="reset"]:hover {
	background-color: #FC3;
}

.comments-sent {
	color: blue;
}

.comments-error {
	color: red;
}

/* DEVICES: */

@media (max-height: 339px) {
	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		padding: 3px 0px;
	}
}

@media (min-height: 340px) and (max-height: 448px) {
	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		padding: 7px 0px;
	}
}

@media (min-height: 449px) {
	#menu-btn,
	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		padding: 14px 0px;
	}
}

@media (min-height: 800px) and (min-width: 1024px) {
	#logo span {
	font-size: 2.5em;
}

	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		font-size: 1.5em;
	}
}

@media (min-height: 1080px) and (min-width: 1024px) {
	#logo span {
	font-size: 3em;
}

	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		font-size: 2em;
		padding: 24px 0px;
	}
}

@media (min-width: 1024px) {
	#logo {
		margin-top: 1em;
		margin-left: 3em;
	}

	#social-media {
		top: 1em;
		right: 2em;
	}

	.content {
	padding: 0em 10em 0em 20em;
}

	#menu-btn {
		display: none;
	}

	#menu {
		display: block;
		background-color: white;
		width: auto;
		height: 100%;
		margin-left: 3em;
		float: left;
	}

	#menu ul li {
		text-align: left;
		border-bottom: 0px solid black;
	}

	#menu ul li a, 
	#menu .popupbtn, 
	#menu #currentSection {
		padding: 7px 0px;
	}

	#menu ul li a:hover, 
	#menu .popupbtn:hover {
		background: transparent;
		color: orange;
	}

	.submenu-container {
		display: block;
		background: transparent;
		border-bottom: 0px solid black !important;
	}

	.submenu li {
		margin-left: 1em
	}

	.submenu-btn::after {
		content: ":";
	}

	.submenu-btn:hover {
		color: inherit !important;
		cursor: unset !important;
	}

	.open-submenu {
	background-color: transparent;
}

}