/* font import */

@font-face {
  font-family: OldNewspaper; 
  src: url(../font/OldNewspaperTypes.ttf);
}

/* text */

h1 {
	font-family: OldNewspaper; 
	margin: 0;
}

h2 {
	font-family: OldNewspaper; 
}

p {
	font-family: OldNewspaper; 
}

ul {
	list-style-type: square;
	list-style-image: url('../media/lilacbullet.png');
}

li {
	font-family: OldNewspaper; 
}

hr {
	color: black;
}

/* div */

.captionedimg {
	text-align: center;
	margin: auto;
	display: flex;
	flex-direction: column;
	width: 25%;
	height: auto;
	padding: 15px;
}

/* img */

img {
	display: block;
	margin: auto;
	width: 100%;
	height: auto;
	border-style: outset;
	border-color: #f9d488;
}

/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 15px;
	margin: 0;
	background-image: url('../media/blogpostbg.jpeg'); 
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}