*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-size:16px;
}
img,
iframe {
	max-width: 100%;
	height: auto;
	/* so that aspect ratio is kept even if height is delcared in markup */
	border: 0;
	/* this stops a border if the image is inside a link */
}
/* uwu hewwo i want to commit kenny uwu */
body {
	font-family: arial, sans-serif;
}
/* death. all is death. there is no point */
body {
	background-color: skyblue;
} 
header {
	background-color: cornflowerblue
}
header, footer {
	text-align: center;
}
/* i'm about to go feral. eE. noTHING WILL sTOP THE INTERNAL SCREAMING- */
/* TYPOGRAPHY */
h1 {
	font-size: 50px;
	color: #4C36C6;/* eh, white */
	text-transform: uppercase;
}
h2{
	font-size: 30px;
	font-family: 'lato', sans-serif;
	text-transform: uppercase;
}
h1,h2,p,li {
	padding-bottom: 1em;
	
}
.item{
	background-color: cornflowerblue;
	padding: 1%;
	margin: 1%;
	margin-bottom:20px;
	margin-top: 20px;
	border-radius: 10px;
}
main{
max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
/* hhhh mmm deth */
.item li {
	margin-left: 25px;
}
blockquote {
	text-transform: uppercase;
	font-style: italic;
}
/*e*/
nav {
	text-align: center;
}
nav li {
	display: inline-block;
}
nav a {
	background: #2E40BF;
		color: black;
	padding: 5px;
	text-decoration: none;
	border-radius: 5px;
}
nav a :hover {
	background: #9528C4;

}
@media screen and (min-width: 768px) {
body {
	background-color: cadetblue;
	background-image: url(BG.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
	.item {
		width: 31.3%;
		background-color: rba(102,102,204,0,0.9); float: left;
	}
	footer{
		color: white;
		clear: both;
	}
}
input [type=text], select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
input [type=submit] {
	width: 100%;
	background-color: #4CAF50;
	color:white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
input[type=submit] :hover {
	background-color: #45a049;
}
div {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}