/* 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;
}

/* Centered iframe */
iframe {
  display: block;
  margin: 18px auto; /* centers horizontally and adds spacing */
  width: 100%;
  max-width: 600px; 
  height: 450px; 
  border: 0;
	transition: transform .30s ease, box-shadow .30s ease, filter .25s ease;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

iframe:hover,
iframe:focus {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 22px 50px rgba(0,0,0,0.22);
	outline: none;
}

section {
	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;
	border: 5px solid rgb(119, 255, 0);
	max-width: 1100px; /* constrains width so the section can be centered */
	margin: 24px auto; /* centers the section block horizontally */
	padding: 18px; /* internal spacing */
}


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;
}