nav {
	background-color: #0A1F26;
	position: fixed;
	top: 0;
	left: 0;
	height: 55px;
	width: 100vw;
	z-index: 1;
}
nav ul li {
	float: right;
	margin-right: 75px;
	list-style-type: none;
	text-align: center;
}
#brand {
	float: left;
}
.nav-link {
	color: #AABEDE;
	font-size: 16px;
	text-decoration: none;
	font-family: 'Palatino', serif;
	border: solid 2px #AABEDE;
	padding: 8px;
	border-radius: 0.8em;
	background-color: rgba(69,69,69,0.42);
	box-shadow: 1.5px 1.5px 2.5px black;
	transition: .75s;
}
.nav-link:hover {
	color: #C8AD55;
	border-color: #C8AD55;
	padding: 8px;
	text-decoration: none;
	background-color: rgba(69,99,99,0.42);
	box-shadow: 2.5px 2.5px 4px rgba(69,69,69,0.62);
}
#brand .nav-link {
	color: #C8AD55;
	border-color: #C8AD55;
	font-size: 18px;
	transition: .75s;
}
#brand .nav-link:hover {
	color: #AABEDE;
	border-color: #AABEDE;
}

body {
	background: #0A1F26;
	overflow-x: hidden;
}
h1 {
	font-size: 70px;
}
#home {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 10, 5, 0.9)), url("Header.png") center 85% no-repeat fixed;
	filter: opacity(70%);
	margin-top: 60px;
	position: relative;
	left: -8px;
	width: 100vw;
	height: 90vh;
	padding-top: 2em;
	background-size: cover;
}
.header-tag {
	margin-top: 250px;
	cursor: default;
	text-align: center;
	color: #C8AD55;
	text-shadow: -1px 0 #F5ECD9, 0 1px #F5ECD9, 1px 0 #F5ECD9, 0 -1px #F5ECD9, -2px 0 #F5ECD9, 0 2px #F5ECD9, 2px 0 #F5ECD9, 0 -2px #F5ECD9;
	font-family: 'Palatino', serif;
	transition: 1.2s ease;
}
h3.header-tag {
	margin-top: -30px;
	font-size: 35px;
	text-shadow: -1px 0 rgba(245,245,245,0.6), 0 1px rgba(245,245,245,0.6), 1px 0 rgba(245,245,245,0.6), 0 -1px rgba(245,245,245,0.6), -2px 0 rgba(145,145,145,0.8), 0 2px rgba(145,145,145,0.8), 2px 0 rgba(145,145,145,0.8), 0 -2px rgba(145,145,145,0.8);
}
.header-tag:hover {
	color: #F5ECD9;
	text-shadow: -2px 0 #C8AD55, 0 2px #C8AD55, 2px 0 #C8AD55, 0 -2px #C8AD55, -2px 0 6px #C8AD55, 0 2px 6px #C8AD55, 2px 0 6px #C8AD55, 0 -2px 6px #C8AD55;
	transform: scale(1.025, 1.025);
}

#about-picture {
	width: 25vw;
	float: left;
	margin-top: 40px;
}
#profile-pic {
	height: 320px;
	width: 320px;
	border-radius: 12rem;
	box-shadow: 6px 6px 8px #343434;
	transition: 1s linear;
}
#profile-pic:hover {
	transform: scale(1.05, 1.05);
}
h2 {
	font-size: 45px;
	color: #C8AD55;
	filter: drop-shadow(2px 2px 1px #0A1F26);
	font-family: 'Palatino', serif;
}
.main {
	margin-top: 40px;
	cursor: default;
	text-align: center;
	color: #F5ECD9;
}
#about {
	margin-top: 60px;
	margin-bottom: 60px;
	display: inline-block;
}
#about-content {
	width: 35vw;
	float: left;
	line-height: 1.5;
}
#about-content p {
	font-size: 25px;
}

#books {
	margin-top: 60px;
}
#book-table {
	cursor: default;
	display: inline-block;
	margin: 5px;
	margin-top: 5px;
	margin-bottom: 30px;
	text-align: center;
}
td, th {
	padding: 10px;
	border: solid;
	border-color: #F5ECD9;
	border-radius: 0.7rem;
	height: 30px;
	width: 320px;
	transition: 1.4s ease;
}
th {
	background-color: #0B0F1A;
	color: #C8AD55;
	font-size: 30px;
	text-transform: uppercase;
}
td {
	background-color: #0B0F1A;
	color: #F5ECD9;
	font-size: 25px;
	font-style: italic;
	text-transform: capitalize;
}
td a {
	color: #D0F3F0;
}
th:hover {
	transform: scale(1.025, 1.025);
	border-color: #AABEDE;
}
td:hover {
	transform: scale(1.025, 1.025);
	border-color: #AABEDE;
}

#contact {
	cursor: pointer;
	margin-top: 80px;
	display: inline-block;
}
#contact-content {
	width: 30vw;
	float: center;
}
#details {
	display: none;
	font-size: 20px;
}
#details p {
	border: solid 2px #AABEDE;
	border-radius: 1em;
	background-color: #0A1F26;
	color: #F5ECD9;
	padding: 4px 3px;
	margin-left: 20%;
	width: 320px;
	text-align: center;
}
#details p:hover {
	border: solid 2px #C8AD55;
}
#details a {
	color: #F5ECD9;
	font-style: italic;
}

footer {
	cursor: default;
	position: absolute;
	bottom: -60;
	left: 89%;
	width: 25vw;
	padding: 5px;
	color: #F5ECD9;
	font-weight: bold;
}
