/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
   background-image: url("https://i.ibb.co/6R7sncmp/stars5.gif");
   color: white;
   font-family: "Arial"; "New Times Roman";
   font-size: 15px;
   overflow-x: hidden;
}

@font-face {
  font-family: 'SuperFunky';
  src: url(https://seasiidehaven.neocities.org/SuperFunky.ttf);
}

a:link {
	color: white;
	text-decoration: none;
}

button {
	width: 270px;
	padding: 5px;
	background: black;
	color: #96E0C5;
	border: none;
	text-align:left;
	font-size:15px;
	cursor: pointer;
}

h1 {
	  paint-order: stroke fill;
	  -webkit-text-stroke: 20px black;
	  text-shadow: 3px 10px 0px #000;
     font-size: 53px; 
}

h2 {
	color: white;
	text-decoration: none
}

.header {
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 350px;
	top: 40px;
}

.bg {
	position: absolute;
	z-index: -2;
}

.blogtitle {
	position: absolute;
	left: 300px;
	top: 90px;
	z-index: 1;
}

.sidebar {
	background: black;
	position: absolute;
	left: 280px;
	top: 150px;
	padding: 30px;
}

.bigboy {
	background: black;
	position: absolute;
	left: 630px;
	top: 150px;
	padding: 30px;
}

.footer {
	text-decoration:none;
	position: absolute;
	top: 800px;
	left: 1220px;
	color: #ffff; 
	 paint-order: stroke fill;
	  -webkit-text-stroke: 10px black;
	  text-shadow: 2px 1px 3px #000;
}