/*Font Family here*/
@import url('https://fonts.googleapis.com/css2?family=Lavishly+Yours&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body{
	margin: 0 auto;
	font-family: "Noto Sans Display", sans-serif;
}

/*Header*/
header{
	padding-top: 25px;
	display: block;
	margin: 0 auto;
	max-width: 1200px;
	text-align: center;
}

h1, h2, h3, h4{ 
	font-family: "Playfair Display", serif;
}
p{ 
	font-family: "Noto Sans Display", sans-serif;
}

/* Navigation*/
nav{
	background-color: #fbeb1c;
	padding: 5px;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
nav li{
	display: inline;
	padding: 20px;
}
nav a{
	text-decoration: none;
}
nav a:link{
	color:black;	
}
nav a:visited{
	color:black;
}
nav a:hover{
	color:purple;
}
nav a:active{
	color:orange;
}

/*Hero image */
.home-hero{
	background-image: url(images/home-hero.jpg);
	background-size: cover;
	max-width: 100%;
	background-position: center top;
	height: 200px;
	padding: 0;
	margin: 0 auto;
}
.home-hero h1{
	color: white;
	text-shadow: 2px 2px 2px black;
	text-align: center;
	display: block;
	padding-top: 50px;
	font-family: "Lavishly Yours", cursive;
}

/* Main Section */
main{
	max-width: 1200px;
	margin: 0 auto;
}


/*home-image of self*/
.col-sm-5{
	padding-top: 30px;
	padding-bottom: 10px;
}
.col-sm-5 img{
	;
}
.home-image{
	border-radius: 5px;
	margin-top: 40px;
}

/*Photo Gallery*/
.gallery .preview{

    width: 100%;
    height: auto;

}
.gallery .gallery-thumbnails img {
    width: 100px;
    height: 75px;
    margin: 3px 10px 10px 0;
}
.gallery .gallery-thumbnails img:hover {
    opacity: 0.8;
    cursor: pointer;
}
.gallery .preview img#preview {
    border-radius: 5px;
    padding: 1px;
    max-width: 100%;
    height: auto;
    margin: 0 auto !important;
    display: block !important;
}

/*Resume Page*/
.resume{
	padding-top: 30px;
	font-size: 13px;
	margin-bottom: 30px;
}
.resume p{
	margin: 0;
}
.resume .col-sm-8{
	border-left: 5px #e6e6e6 solid;
	border-right: 2px #4d4d4d solid;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 60px;
    padding-bottom: 30px;
}
/*Projects Page*/
.projects {
	margin-bottom: 20px;
	margin-top: 10px;
	column-gap: 10px;
	text-align: center;
}
.web-img{
	border: 2px #686868 solid;
	border-radius: 5px;
	padding: 10px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}


/*Contact Page*/
.contact{
	padding-top: 30px;
	
}
.contact p{
	text-align: center;
	font-size: 10pt;
}
.contact h1{
	text-align: center;
	font-size: 18pt;
}
.contact img{
	position: fixed;
}

/*Footer*/
footer{
	text-align: center;
}
footer ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
footer li{
	display: inline;
	padding: 20px;
}
footer a{
	text-decoration: none;
}
footer a:link{
	color:black;	
}
footer a:visited{
	color:black;
}
footer a:hover{
	color:purple;
}
footer a:active{
	color:orange;
}
footer small{
	color: black;
	padding-bottom: 50px;
}	
footer .container-fluid{
	background-color: #fbeb1c;
	text-align: center;
	font-family: "Noto Sans Display", sans-serif;
	padding-top: 5px;
	padding-bottom: 10px;
	margin: 10px auto;
}
.fa{
	padding-left: 30px;
	font-size: 2em;
}

/* Media queries for mobile */
@media only screen and (max-width:768px){
    .hero-image{
        display:none;
    }
}

/*CSS without a media query--applies to all sizes unless overridden*/
h1{
		font-size: 4em;
 }

/* CSS Adjustments for Tablets */
@media only screen and (max-width: 1024px) {
	h1{
		font-size: 2em;
	}
}

/* CSS Adjustments for Smartphones */
@media only screen and (max-width: 768px) {
	h1{
		font-size: 1.5em;
	}
}
