@charset "utf-8";
/* CSS Document */

html,
html *{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"
}

header{	padding: 40px;	}

img {width: 100%;
	max-width: 100%;
	vertical-align: middle;
	}

footer{
	padding 20px 30px;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 100px;
}

.style-nav ul {
	list-style: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2f322a;
	text-align: center;
	display: block;	
	text-transform: uppercase;
	padding: 8px;
}

/*this will "clear the float" for the rows*/
.row:before, .row:after{
	content: "";
	display: table;
}
.row:after {
	clear: both;
}

.pic_col{
	max-width: 500px;
	max-height: 300px;
	
}
.tomBench {
	background-image: url("images/Powell.png");
	background-size: cover;
	padding: 20px 20px 20px 40px;
	color:aqua;	
	text-align: center;
}

h1{
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;	
}

h2{
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;	
}

h4{
	font-size: 16;
	font-weight: 200;
	margin-bottom: 35px;	
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;	
}

.footer-text{
	font-size: 13px;
	margin-bottom: 20px;
	background-colo: #b9a88e;
	text-align: center;
	color:aqua;
}

.button	{
	border: 2px #ffffff solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #ffffff;
	text-decoration: none;	
}

.gen-info{
	background-color: #b9a88e;
	color: #000000;
	padding: 30px 20px 60px;
	text-align: center;
}

.gen-appt{
	background-color: #2D2D35;
	color: #ffffff;
	padding: 30px 20px 60px;
	text-align: center;
}


/* tablet-view */
@media (min-width: 768px){
	.style-nav ul li { 
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;	
	}
}

/* desktop-view */
@media (min-width: 1024px){
	
	.style-logo {
		float: left;
	}
	.style-nav ul {
		float: right;	
	}
	
	.style-logo {
		display: flex;
	}
}



