html, body {
	margin: 0;
	padding: 0;
	font-family: Helvetica, sans-serif;
	background-color: #282828;
	text-align: center;
}

.titlebar {
	position: fixed;
	background-color: #B63626;
	width: 100%;
	color: white;
	text-decoration: none;
	font-weight: bold;
	padding: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
	overflow: hidden;
	z-index: 10;
	top: 0;
	left: 0;
	box-shadow: 0px 10px rgba(1, 1, 1, 0.2);
}

.titlebar .left {
	float: left;
	margin-right: 100px;
	font-size: 30px;
}

.titlebar .right {
	margin-top: 20px; 
	float: right;
	font-size: 20px;
}

.titlebar .right a {
	margin-right: 50px;
}

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

a:hover {
	text-decoration: underline;
}

.container {
	margin-top: 80px;
	text-align: left;
	display: inline-block;
	max-width: 800px;
}

.container img {
	width: 60%;
	margin-left: 20%;
}

.read-the-story {
	margin-top: 50px;
	padding: 50px;

	border-top: 10px solid white;
	text-align: justify;
	line-height: 1.5;
	color: white;
}

button {
	position: relative;
	width: 250px;
	margin-left: -125px;
	left: 50%;
	height: 50px;
	background-color: #B63626;
	color: white;
	border: 2px solid #892a1e;
	font-size: 20px;
	font-weight: bold;
	transition: .5s;
	cursor: pointer;
}

button:hover {
	color: #B63626;
	background-color: white;
}

.general {
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;

	border-top: 10px solid white;
	text-align: justify;
	line-height: 1.5;
	color: white;
}

tr {
	color: white;
	height: 25px;
}

td {
	min-width: 110px;
}

table {
	margin-bottom: 50px;
}

.points {
	float: right;
}

.point {
	width: 10px;
	height: 10px;
	background-color: #B63626;
	border: 1px solid white;
	border-radius: 5px;
	float: left;
	margin-left: 3px;
}

.no-point {
	width: 10px;
	height: 10px;
	background-color: #282828;
	border: 1px solid white;
	border-radius: 5px;
	float: left;
	margin-left: 3px;
}

.apperance {
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;

	border-top: 10px solid white;
	text-align: justify;
	line-height: 1.5;
	color: white;
}

.apperance div {
	border: 1px solid white;
	min-width: 80%;
	padding: 20px;
}

.personality {
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;


	border-top: 10px solid white;
	text-align: justify;
	line-height: 1.5;
	color: white;
}

.personality div {
	border: 1px solid white;
	min-width: 80%;
	padding: 20px;
}

.grid {
	margin-top: 80px;
	display: grid;
	grid-template-columns: 320px auto;
	text-align: center;
}

.toc {
	text-align: left;
	color: white;
	font-weight: bold;
	line-height: 2;
	border-right: 10px solid white;
	padding-top: 60px;
}

.toc div {
	position: fixed;
	z-index: 0;
}

.toc h2 {
	margin-left: 30px;
}

.story {
	display: inline-block;
	width: 90%;
	max-width: 650px;
	color: white;
	line-height: 1.5;
	text-align: justify;
	padding-left: 30px;
	box-sizing: border-box;
	margin-bottom: 100px;
}

.story img {
	width: 50%;
	float: right;
	margin: 30px;
	border: 5px solid white;
}

.story h1 {
	padding-top: 80px;
	text-align: left;
}

ul {
	list-style: none;
}

li {
	list-style: none;
}


@media only screen and (max-width: 800px) {
	.grid {
		grid-template-columns: auto;
		margin-top: 0px;
	}

	.toc div {
		position: relative;
	}

	.toc {
		padding-top: 30px;
	}

	.titlebar {
		position: relative;
	}

	.container {
		margin-top: 0px;
	}
}
























