@import url('https://fonts.googleapis.com/css2?family=Ga+Maamli&family=Oswald:wght@200..700&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plaster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
body{
	font-family: "Oswald", sans-serif;
	margin: 0;
	background-color: #F5F5DC;
}

/* Website Links except the nav */

a:link{
	color: #black;
}
a:visited{
	color: #blue;
}
a:hover{
	color: red;
}
a:active{
	color: yellow;
}

/* Navigation */
nav{
	background-color: #D3D3D3;
	border-top: 3px solid black;
	border-bottom: 3px solid black;
	padding: 5px;
}
header{
	text-align: center;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
nav li{
	display: inline;
	padding: 5px;
}
nav a{
	text-decoration: none;
}
nav a:link;{
	color: black;
}
nav a:visited{
	color: blue;
}
nav a:hover{
	color: red;
}
nav a:active{
	color: yellow;
}
/* Main */
main{
	max-width: 1200px;
	margin: 20px auto;
	padding: 10px;
}
.header-image{
	max-width: 100%;
	margin-left: auto;
margin-right: auto;
	display: block;
	height: auto;
}
.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 {
    padding: 1px;
    max-width: 100%;
    height: auto;
    margin: 0 auto !important;
    display: block !important;
}
h1{
	font-family: "Plaster", sans-serif;
}
h2{
	font-family: "Pacifico", sans-serif;
}
/* Footer */
footer{
	border-top: teal 3px solid;
	text-align: center;
	background-color: gray;
}
/*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;
	}
}