body {
	background-color: black;
	/*background-image: url("https://i.pinimg.com/1200x/1d/24/63/1d246323395394780fc5e919c1661769.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
	font-family: Arial;
	color: white;
	margin: 0px;
	padding: 0px;
}

@font-face {
	font-family: ImWeird;
	src: url("i_mweird.ttf");
}

.parent {
	display: grid;
	grid-template-columns: 0.5fr 0.75fr 1fr 1fr 0.5fr;
	grid-template-rows: 25px 150px 40px 1.25fr 120px;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.parent > div {
	border: 5px double white;
	background-color: black;
}

body::after {
	content:"";
	display: block;
	height: 40px;
}

.header {
	grid-area: 2 / 2 / 3 / 5;	
	font-family: ImWeird, Arial;
	padding-left: 7%;
	
	
	background-image: url("dithered-muse.png");
	background-repeat: no-repeat;
	background-position: 125% 17%;
}
.header img {
	float: right;
	right: -100px;
	top: -100px;
}

h1 {
	font-size: 60px;
}

.nav { grid-area: 3 / 2 / 5 / 3; }
a {
	display: block;
	color: yellow;
	margin: 10px;
}
a:hover {
	background-color: yellow;
	color: black;
	letter-spacing: 2px;
	font-weight: bold;
}

.updates {
	grid-area: 5 / 2 / 6 / 3; 
	overflow: auto;
	padding: 0px 5px;
}

.blinkbar { grid-area: 3 / 3 / 4 / 5; }

.beef {
	grid-area: 4 / 3 / 6 / 5; 
	text-align: center;
	padding: 0px 10px;
	
	background-image: url("sunflower2.png"), url("sunflower2.png");
	background-repeat: no-repeat;
	background-position: /*-100% 200%, 200% -100%*/ -200px -200px, calc(100% + 200px) calc(100% + 200px);
	background-size: 75%;
	background-clip: padding-box;
}

.footsies {
	margin-top: 20px;
	height: 100px;
	background-color: black;
}

/* decorative divs */
.sidebarL { grid-area: 2 / 1 / 6 / 2; border-left: none !important;}
.sidebarR { grid-area: 2 / 5 / 6 / 6; border-right: none !important;}
.sidebarL, .sidebarR {
	border-top: 10px solid black !important;
	border-bottom: 10px solid black !important;
	background-image: url("flowr1.jpg");
	background-size: 200%;
}

/*scrollbar - code from w3schools*/
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: grey;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background-image: url(C:/Users/gabri/OneDrive/Pictures/site-stuffz/warning.jpg);
  /*background-repeat: repeat;*/
  background-size: cover / 2;
}