html {
  scroll-behavior: smooth;
}

body {
    min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(229,222,203,1) 100%);
}

.flexFooter {
	flex: 1;
}

.nnname {
	position: absolute;
	z-index: 620;
	font-family: "Baloo 2", sans-serif;
	font-weight: 600;
	font-size: 200%;
	line-height: .8;
	color: #fff;
	text-shadow: 1px 1px 1px #666;
	text-align: center;
	top: 50px;
	left: 50%;
	transform: translate(-50%,-50%);
}

.logo {
    position: absolute;
    z-index: 600;
	top: 65%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 200px;
}

.titles {
		text-align: center;
		font-size: 160%;
		font-weight: bold;
		color: #fff;
		position: absolute;
		z-index: 10;
		top: 30px;
		width: 100%;
		display: block;
		background-color: rgba(0,0,0,.5);
}

.thumbnail {
	width: 100%;
	height: auto;
	max-width: 300px;
	background: transparent;
}

.toppad {
    padding: 100px 0 0 0;
}

.bottompad {
    padding: 0 0 20px 0;
}

.greytext {
	color: #555;
	line-height: 4;
}

.svg:a {
    border: thin solid #444;
}

/************** BUTTONS **************/
.btn-native {
    color: # #007a67;
    background-color: #f8f8f8 ;
}

.btn-native:visited {
    color: #007a67;
    background-color: #f8f8f8;
}

.btn-native:hover {
    color: #fff;
    background-color: #dedede;
}

.btn-wide {
	width: 100%;
	margin-top: 25px;
}


/************* YOU TUBE **********/
	.gallery {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
		grid-gap: 2rem;
		margin: 2rem;
	  }
	  
	  .gallery-item {
		position: relative;
		aspect-ratio: 1 / 1;
		width: 100%;
		overflow: hidden;
		object-fit: cover;
		opacity: 0.75;
		transition: opacity 0.5s;
		cursor: pointer;
		background-color: slategray;
	  }
	  
	  .gallery-image-title {
		display: none;
	  }
	  
	  
	  .gallery-item:hover {
		opacity: 1;
	  }
	  
	  .gallery-image {
		aspect-ratio: 1 / 1;
		width: 100%;
		overflow: hidden;
		object-fit: cover;
		transition: opacity 0.5s;
		cursor: pointer;
	  }
	  
/* Google Maps */
.google-maps {
    position: relative;
    padding-bottom: 75%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.sponsor {
	width: 100%;
	max-width: 125px;
	height: auto;
	padding-bottom: 20px;
    margin: 0 auto;;
}

.greybox {
	background: #e5e5e5;
	border-radius: 10px;
	min-height: 300px;
	width: auto;
	border: thin solid #ccc;
}

.sponsorlogo {
	display: flex;
	align-items: center;
  	justify-content: center;
}

.btn-width{
    width: 100%;
}

/* Footer */
.sponsorstrip {
	width: 100%;
	min-height: 100px;
	background-color: #ebfeff;
	padding: 20px 0;
	position: relative;
	margin-top: 40px;
	bottom: 0;
	border-top: thin solid #fff;
}
	
.footer {
	background: #5a7073;
	color: #fff;
	text-align: center;
	font-size: 70%;
	border-top: thin solid #f7e5c0;
	height: 50px;
	width: 100%;
	padding-top: 10px;
}

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

.footer a:hover {
	color: #666;
}

input {
    border: thin solid #555;
}


/*********** RESPONSIVE **************/
@media screen and  (max-width: 900px) {
.titles {
	color: #fff;
	top: 2%;
	font-size: 50px;
}

.nnname {
	font-size: 200%;
	line-height: .8;
	text-align: center;
	top: 50px;
	}
}