/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of CSS Reset */



.comic-relief-regular {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}

.sekuya-regular {
  font-family: "Sekuya", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
	background-color: rgb(73, 162, 180);
	background-image: url('basic.png');

}

.LOGO {
	margin-right:50px;
	margin-left:450px;
}

.LOGO img:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.LOGO img {
	width:600px;
	height:200px;
}

a {
	text-decoration: none;
	color: rgb(99, 188, 81);
	font-size: 20px;
	font-family: "Sekuya", system-ui;
	font-weight: 400;
	font-style: normal;
	display: inline-block;
	padding: 6px 10px;
	border-radius: 6px;
	transition: background-color .22s ease, color .18s ease, transform .12s ease, box-shadow .22s ease;
}

a:hover,
a:focus {
    background-color: rgba(99,188,81,0.08);
    color: rgb(0, 234, 255);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    outline: none;
}

a:active {
    transform: translateY(0);
}

nav {
	background-color:rgb(8, 58, 78);
	padding:15px;
	border: 5px solid rgb(84, 228, 76);
}

.navlinks {
	display:flex;
	margin-top:20px;
	margin-bottom:20px;
	text-align:center;
	justify-content:space-evenly;
}

h1 {
	text-align:center;
	font-size:60px;
	margin-top:20px;
	margin-bottom:20px;
  	font-family: "Sekuya", system-ui;
  	font-weight: 400;
  	font-style: normal;
	color: rgb(99, 188, 81);
	background-color:rgb(8, 58, 78);
	border: 5px solid rgb(119, 255, 0);
	padding:10px;
}

h2 {
	display: block;
	margin: 0 0 12px 0;
	padding: 10px 14px;
	background-color: rgb(8, 58, 78);
	border: 5px solid rgb(84, 228, 76);
	font-family: "Sekuya", system-ui;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	color: rgb(99, 188, 81);
	text-align: left;
}

.link a {
	text-decoration:none;
	color:rgb(20, 170, 157);
	font-size:20px;
  	font-family: "Sekuya", system-ui;
  	font-weight: 400;
  	font-style: normal;
	background-color: rgba(26, 78, 100, 0.95);
}

/* Places the external link block on the right */
.link {
    text-align: right;
    width: 100%;
    margin-top: 12px;
}

.section {
	margin: 24px;
	padding: 18px;
	background-color: rgba(8, 58, 78, 0.95);
	border: 5px solid rgb(84, 228, 76);
	display: flex;
	justify-content: center; /* center the form horizontally */
	align-items: flex-start;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

fieldset {
	font-family: "Sekuya", system-ui;
	font-weight: 400;
	font-style: normal;
	border: 3px solid rgb(84, 228, 76);
	padding: 20px 22px;
	margin: 10px 0 18px 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(8,58,78,0.85), rgba(8,58,78,0.95));
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.2) inset;
}

fieldset legend {
	padding: 8px 12px;
	background-color: rgb(8, 58, 78);
	border: 3px solid rgb(119, 255, 0);
	color: rgb(99, 188, 81);
	font-weight: 700;
	border-radius: 6px;
}

label {
	display: block;
	margin-top: 10px;
	color: rgb(119, 255, 0);
	font-weight: 700;
}

input[type="text"], input[type="email"], textarea {
	width: 100%;
	padding: 10px 12px;
	margin-top: 6px;
	margin-bottom: 12px;
	border: 2px solid rgb(84, 228, 76);
	border-radius: 6px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.03);
	color: rgb(220, 255, 220);
}

/* color placeholders for required fields to make them stand out */
input:required::placeholder,
textarea:required::placeholder {
	color: rgb(255, 204, 51);
	opacity: 1; /* ensure visibility */
}

/* vendor fallbacks */
input:required::-webkit-input-placeholder,
textarea:required::-webkit-input-placeholder { color: rgb(255, 204, 51); }
input:required::-moz-placeholder,
textarea:required::-moz-placeholder { color: rgb(255, 204, 51); }
input:required:-ms-input-placeholder,
textarea:required:-ms-input-placeholder { color: rgb(255, 204, 51); }
input:required:-moz-placeholder,
textarea:required:-moz-placeholder { color: rgb(255, 204, 51); }

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
	outline: none;
	border-color: rgb(119, 255, 0);
	box-shadow: 0 0 0 4px rgba(119,255,0,0.06);
}

input[type="submit"] {
	display: inline-block;
	background: rgb(99, 188, 81);
	color: rgb(8,58,78);
	padding: 10px 18px;
	border: none;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 10px;
}

input[type="submit"]:hover {
	background: rgb(119, 255, 0);
}

.derp img {
    width: 500px;
    height: 500px;
    margin: 20px auto 50px 200px; /* give extra space from the left edge */
    display: block;
    border: 10px solid rgb(11, 96, 104);
	transition: transform .3s ease, box-shadow .3s ease, filter .2s ease;
	border-radius: 8px;
}

.derp img:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}


footer {
	font-family: "Comic Relief", system-ui;
	font-weight: 700;
	font-style: normal;
	position: fixed;
	right: 12px;
	bottom: 12px;
	text-align: right;
	color: rgb(119, 255, 0);
	background-color: rgba(8, 58, 78, 0.95);
	padding: 6px 10px;
	border: 3px solid rgb(84, 228, 76);
	border-radius: 4px;
}