/*Font Type. Newsreader for paragraphs. DM Serif for Heading and Headers. MonteCarlo for cursive*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Lavishly+Yours&family=MonteCarlo&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Pacifico&display=swap');
body{
	font-family: "Newsreader", serif;
	margin: 0; auto
	color: white;
}
body{
	background: #3fe5fb;
	background: radial-gradient(circle,rgba(63, 229, 251, 1) 0%, rgba(16, 16, 87, 1) 100%);
}


/* Website Links except the nav */
a:link{
	color: #white;
}
a:visited{
	color: #white;
}
a:hover{
	color: lime;
}
a:active{
	color: orange;
}

header{
	text-align: center;
	margin-bottom: 0;
	color: white;
	text-shadow: 2px 2px 1px black;
}
h1{ 
	font-family: "DM Serif Text", serif;
}
p{ 
	font-family: "Newsreader", serif;
}

/* Navigation*/
nav{
	background-color: #101057;
	padding: 5px;
}
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;
	font-family: "Newsreader", serif;
}
nav a:link{
	color:white;	
}
nav a:visited{
	color:white;
}
nav a:hover{
	color:lime;
}
nav a:active{
	color:orange;
}

/* Main Section */
main{
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
}
.hero-image{
	border: whitesmoke 10px solid;
	border-radius: 15px;
	background-size: cover;
	background-position: center;
}

main p{
	color: white;
	margin-right: 20px;
}
main i{
	color: white;
}
main .fa{
	float: right;
	font-size: 3em;
	margin-top: 5px;
}
main .container-fluid{
	margin-top: 5px;
}
.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;
}


/* Footer */

footer{
	text-align: center;
	margin-bottom: 35pt;
	margin: 0 auto;
}

footer p{
	color: white;
}
footer i{
	color: white;
}
footer a{
	text-decoration: none;
}
footer a:link{
	color:white;	
}
footer a:visited{
	color:white;
}
footer a:hover{
	color:lime;
}
footer a:active{
	color:orange;
}
footer small{
	color: white;
}	
footer .container-fluid{
	background-color: #101057;
	text-align: left;
	font-family: "Newsreader", serif;
	padding-top: 5pt;
	margin: 0 auto;
}


/* 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;
	}
}

