* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.pagewrapper {
	max-width: 85%;
	margin: 0 auto;
}
	
body {
	background-color: #111111;
	color: #61c62d;
}

header {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	border-bottom: 1px solid #61c62d;
	background-color: #000000;
	gap: 16px;
	border-left: 1px solid #61c62d;
	border-right: 1px solid #61c62d;
	border-top: 1px solid #61c62d;
}


#logo {
	width: 400px;
	height: 267px;
	flex-shrink: 0;
}

#headerright {
	display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

#tagline {
	padding-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 600;
	color: #551a9b;
	text-align: center;
	width: 100%;
}

nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	min-width: 300px;
}

nav a {
	display: block;
	width: 160px;
	height: 44px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin: 0;
	padding: 0;
	
}

.btnhome {
	background-image: url('images/homebutton.png'); 
}

.btnhome:hover { 
	background-image: url('images/homebuttonhover.png'); 
}

.btncharacters { 
	background-image: url('images/charactersbutton.png'); 
}

.btncharacters:hover { 
	background-image: url('images/charactersbuttonhover.png'); 
}

.btnskills { 
	background-image: url('images/skillsbutton.png'); 
}

.btnskills:hover { 
	background-image: url('images/skillsbuttonhover.png'); 
}

.btndevelopment { 
	background-image: url('images/developmentbutton.png'); 
}

.btndevelopment:hover { 
	background-image: url('images/developmentbuttonhover.png'); 
}

.btncontact { 
	background-image: url('images/contactbutton.png'); 
}

.btncontact:hover { 
	background-image: url('images/contactbuttonhover.png'); 
}

.bodywrapper {
	display: flex;
}

#socialbar {
	align-self: flex-end;
}

.socialbutton {
	width: 48px;
	height: 48px;
	padding: 5px;
}

.socialbutton:hover {
	transform: scale(1.05);
	transition: 0.2s ease;
}

main {
	flex: 1;
	padding: 20px;
	color: #61c62d;
	border-left: 1px solid #61c62d;
	background-color: #000000;
}

.contentlayout {
	padding: 10px;
	text-align: center;
}

.contentrow {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	width: 100%;
	flex-wrap: wrap;
}

.picblock {
	flex: 0 0 400px;
}

.textblock {
	flex-shrink: 0;
	padding: 20px;
	flex: 1;
	text-align: center;

}

.textblock h2 {
	color: #551a9b;
}

.contentimg {
	width: 100%;
	height: auto;
}

figcaption {
	font-size: 0.75rem;
	text-align: center;
}

#devfeed {
	width: 15%;
	min-width: 120px;
	padding: 16px 12px;
	border-right: 1px solid #61c62d;
	background-color: #000000;
	color: #61c62d;
	overflow-y: auto;
}
#devfeed h3 {
	color: #551a9b;
	padding: 10px;
}

#devfeed ul {
	list-style: none;
}

#devfeed li {
	padding: 10px;
}

#devfeed a {
  color: #61c62d;
  text-decoration: none;
}

#devfeed a:hover {
  color: #551a9b;
}

.formwrapper {
	padding: 10px;
}

form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 10px;
}

form figure {
	color: #551a9b;
	grid-column: 1/-1;
	text-align: center;
	padding: 10px;
}

.formimg {
	width: 50%;
	height: auto;
}

fieldset {
	border: 2px solid #61c62d;
	border-radius: 6px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.field.wide {
	grid-column: 1/-1;
}

.field label {
	font-weight: bold;
	padding-bottom: 6px;
	padding-top: 6px;
}

textarea {
	resize: vertical;
	min-height: 70px;
}

.hearabout, .maillist {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 6px;
}

legend {
	font-weight: bold;
	color: #61c62d;
}

.hearabout label, .maillist label {
	display: flex;
	gap: 3px;
	font-weight: normal;
	padding: 3px;
}

.buttons {
	grid-column: 1/-1;
	display: flex;
	justify-content: center;
	gap: 3px;
}

.btnsubmit, .btnreset {
    display: block;
    width: 320px;
    height: 88px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.btnsubmit { 
	background-image: url('images/sendmessagebutton.png'); 
}

.btnsubmit:hover { 
	background-image: url('images/sendmessagebuttonhover.png'); 
}

.btnreset { 
	background-image: url('images/resetformbutton.png'); 
}

.btnreset:hover { 
	background-image: url('images/resetformbuttonhover.png'); 
}

footer {
	text-align: center;
	padding-bottom: 30px;
	background-color: #000000;
	border-left: 1px solid #61c62d;
	border-right: 1px solid #61c62d;
	border-bottom: 1px solid #61c62d;
}

#sitemap {
	color: #61c62d;
}

#sitemap ul {
	list-style-type: none;
	padding-left: 20px;
}

#sitemap ul ul {
	padding-left: 40px;
}

#sitemap li {
	margin: 6px 0;
}
#sitemap a {
	color: #61c62d;
	text-decoration: none;
}

#sitemap a:hover {
	color: #551a9b;
}	
	
footer a {
	color: #61c62d;
	text-decoration: none;
}

footer a:hover {
	color: #551a9b;
}

@media (max-width: 768px) {
	#devfeed {
		display: none;
	}
}
	
	