*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	margin: 0 auto;
	width: 100%;
	margin-top: 2rem;
	background-image: url("background.gif");
	color: #262839;
	max-width: 1600px;
	font-family: 'Open Sans', sans-serif;
	padding: 20px;
}
 
.title{
	padding-left: 0.5rem;
	font-size: 40px;
	line-height: 20px;
	position: relative;
	z-index: 1;
}
 
.container{
	display: flex;
	flex-direction: row;
	gap: 20px; 
}
 
.block-1{
	flex-grow: 2;
	flex-basis: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	background-color: #BCC4DB;
	border-left: 2px solid #262839;
	height: 550px;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);
}
 
.block-2{
	flex-grow: 8;
	flex-basis: 0;
}
 
.pfp{
	width: 100%;
	border: 2px solid #BCC4DB;
}
 
.headers{
	color: #7E809A;
	font-family: 'Jersey 10', sans-serif;
	text-shadow: -2px 0 #262839, 2px 0 #262839, 0 -2px #262839, 0 2px #262839, 2px 2px 4px #000000;;
	font-size: 3rem;
}

.headers-2{
	color: #7E809A;
	font-family: 'Jersey 10', sans-serif;
	text-shadow: -5px 0 #262839, 5px 0 #262839, 0 -5px #262839, 0 5px #262839, 2px 2px 4px #000000;;
	font-size: 6rem;
}

.headers-3{
	color: #7E809A;
	font-family: 'Jersey 10', sans-serif;
	text-shadow: -2px 0 #262839, 2px 0 #262839, 0 -2px #262839, 0 2px #262839, 2px 2px 4px #000000;;
	font-size: 2.5rem;
}
 
.block-1 ul{
	padding-left: 2.5em;
}
 
.block-1 li{
	font-style: italic;
}
 
.content{
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
 
.area{
	background-color: #BCC4DB;
	padding: 1rem;
	border-left: 2px solid #262839;
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	width: 80rem;
	margin: 0;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);
}
 
.postheadwrapper{
	display: flex;
	justify-content: space-between;
}
 
.posthead{
	align-self: center;
}
 
.posth2{
	font-size: 26px;
}
 
.date{
	font-size: 13px;
}
 
.icon{
	width: 75px;
	opacity: 1;
	border: 2px solid #5c3443;
	align-self: center;
}
 
@media(max-width:480px){
	.container{
		flex-direction: column;
	}
	.block-1{
		height: auto;
		text-align: center;
	}
	.pfpwrapper{
		display: flex;
		justify-content: center;
	}
	.pfp{
		width: 80%;
	}
	.block-1 ul, li{
		display: inline;
		padding: 0;
	}
	.block-1 li{
		margin-left: 5px;
	}
	.title{
		text-align: center;
		font-size: 44px;
	}
}
 
a{
	color: #262839;
	text-decoration: none;
    border-bottom: #262839 0.01em solid;
}
}
 
a:visited{
	color: #262839;
}
 
a:hover{
	font-weight: bold;
}
 
a:active{
	font-weight: normal;
}
 
::-webkit-scrollbar{
	width: 6px; 
}
 
::-webkit-scrollbar-track{
	background-color: transparent;
}
 
::-webkit-scrollbar-thumb{
	background-color: #C36B8D;
}
 
#credit{
	font-size: 12px;
	position: fixed;
	bottom: 0;
	right: 0;
}
