* {
	box-sizing: border-box;
}

@font-face {
	font-family: "Cat Cafe";
	src: url("CatCafe.ttf");
}

html {
	background-color: #443742;
}

body {
	font-family: sans-serif;
	margin: 1% 3%;
	z-index: 1;
}

header {
	background-image: linear-gradient(#B388EB 20%, #7951AE 80%);
	border: 1px solid black;
	border-bottom: 0px solid black;
	border-radius: 0.5em 0.5em 0px 0px;
	color: #FFD9DA;
	display: flex;
	font-family: "Cat Cafe";
	justify-content: space-between;
	height: 5.5em;
	align-items: center;
	padding: 2px 7px;
	overflow: hidden;
	text-shadow: -1px -1px 1px #040702;
}

header > img {
	width: 7em;
	height: 7em;
	transform: rotate(30deg);
	opacity: 0.5;
}

nav {
	background-image: linear-gradient(#6C3082, #522270);
	border: 1px solid black;
	border-bottom: 0px solid black;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

nav > a {
	color: #FFD9DA;
	text-decoration: none;
	padding: 5px;
}

nav > a:hover {
	transform: scale(1.05);
	box-shadow: 1px 1px 2px #040702, -1px -1px 2px #040702;
}

main {
	background-color: #685566;
	border: 2px outset #443742;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 1em;
}

main a {
	color: #FFD9DA;
}

aside {
	flex-basis: 20%;
	flex-shrink: 0;
}

aside > div {
	background-image: linear-gradient(135deg, rgb(251, 174, 210, 0.8), rgb(201, 124, 160, 0.8));
	border: 2px outset #443742;
	font-family: monospace;
	font-size: 1.5em;
	height: 300px;
	margin: 3px;
	overflow: scroll;
	padding: 5px;
	text-align: center;
}

aside > div > ul {
	list-style-position: inside;
	padding: 0;
}

aside > div:hover {
	background-image: linear-gradient(135deg, rgb(201, 124, 160, 0.8), rgb(251, 174, 210, 0.8));
}

article {
	border-left: 2px dashed #443742;
	color: #FFD9DA;
	flex-basis: 80%;
	flex-shrink: 0;
	padding: 3px;
}

article > div {
	border-bottom: 3px groove #847782;
	padding: 5px;
}

div.blogcardheader {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

div.notepad {
	background-color: #FFD5E9;
	border: 1px solid #C97CA0;
	color: #000;
	font-family: "Cat Cafe";
	font-size: 1.25em;
	line-height: 2em;
	padding: 6px;
	text-decoration: underline #C97CA0 solid 2px;
}

a.linkbutton {
	background-image: linear-gradient(180deg, rgb(251, 174, 210, 0.8), rgb(201, 124, 160, 0.8));
	border: 1px #443742 solid;
	border-radius: 5px;
	color: #305;
	display: inline-block;
	padding: 5px 7px;
	text-decoration: none;
}

a.linkbutton:hover {
    background-image: linear-gradient(180deg, #B388EB, #7951AE);
	box-shadow: 1px 1px 1px #50F, -1px -1px 1px #50F;
}

a.linkbutton:active {
	background-image: linear-gradient(180deg, #9368CB, #59318E);
	transform: scale(0.98);
}

footer {
	color: #FFD9DA;
	display: flex;
	justify-content: center;
	text-shadow: -1px -1px 2px black;
}

@media screen and (max-width: 1000px){
	aside {
		flex-basis: 30%;
		flex-shrink: 0;
	}
	
	article {
		flex-basis: 70%;
		flex-shrink: 0;
	}
}
