@charset "UTF-8";
/* CSS Document */
html,
html * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	}

header {
	width: 100%;
	top: 0px;
	padding: 20px;
	position: absolute;
	background-color: black
}

.logo {
	height: 40px;
	width:auto;
	 
}

body {
	background-image:url("../Images/Artboard1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0;	
}



p {margin-bottom: 1.5em}

.sitenav {
	list-style: square;
	margin: 0;
	padding: 0;
	display: flex; /* Makes the items horizontal */
	justify-content: flex-end; /*pushes items to the right*/
	gap: 0; /*space between menu items*/
}
.navbar {
	display: flex;
	justify-content: center;
	gap: 1.5em;
	list-style-type: none;}
.navbar a {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
}

.navbar a:hover {
	color:#F8A705;
	font-weight: bolder;
	
}
	


.main {
	padding: 20px;
	display: grid;
	align: center;
	
}


.two-column-layout {
	display: flex;
	gap: 20px;
	padding: 20px;
	align-items: flex-start
}


.center-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 100px;
}

.landing-card img {
	max-width: 100%;
	height: auto;
	padding-top: 25px;
}

.landing-card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	text-align: center;
	width: 500px;
	max-width: 90%
}

.main h1 {
	font-size: 50px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	color:#F8A705; 
	
}

.book-title {
	font-size: 36px;
	padding-top: 25px;
	font-weight: bolder;
	color: #F8A705;
	
	
}

.landing-card img {
	padding-bottom: 30px;
}
.blurb {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	text-align: left;
	padding-left:15px;
	padding-right:15px;
	
}

.release-date {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-weight: bold;
}

.left-column {
	display: flex;
	flex-direction: column;
	padding-top: 100px;
	gap: 20px;
	flex: 1;
	
	
}
.profile-photo, .below-photo {
	width: 100%;
	max-width: 300px;
	border-radius: 8px;
}

.center-column {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	flex: 1;
}
.right-column {
	flex: 2;
	padding: 25px;
	padding-top: 100px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	text-align: left;
	width: 500px;
	max-width: 90%;
	
}

.social-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.socialicon {
	width: 50px;
	height: 50px;
}

.aboutme {
	font-size: 20px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.quote {
	padding: 100px;
	font-size: 18px;
	font-style: italic
}

.featuretitle {
	padding-top: 50px;
	padding-bottom: 25px;
}

.featuretitle a {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 34px;
	text-decoration: none;
	color: #474545;
	font-weight: bold;
}

.about-me-copy {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding: 25px;
	text-align: left;
	
}

.site-footer {
	background-color: black;
	padding:40px 20px;
	font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
    color: #F8A705;
}

.footer-section h4 {
	margin-bottom: 10px;
	font-size:16px;
	color:white;
}

.footer-copy {
	color: white
}

.footer-bottom {
	color: white
}

@media (max-width: 768px) {
	
}
