@import url('https://fonts.googleapis.com/css2?family=Raleway+Dots&display=swap');

@keyframes float-breath {
	0% {
		transform: scale(1, 1) translate(0, 0) rotate(0deg);
	}	
	50% {
		transform: scale(1.03, 1.07) translate(0.25vh, -1.5vh) rotate(2deg);
	}
	80% {
		transform: scale(1, 1) translate(0, 0) rotate(0deg);
	}
}

@keyframes float-ground {	
	0% {
		transform: scale(1.025, 1.03) translate(0.07vh, 0.18vh) rotate(-1.5deg);
	}
	60% {
		transform: scale(1, 1) translate(0, 0) rotate(0deg);
	}
	88% {
		transform: scale(1.025, 1.03) translate(0.07vh, 0.18vh) rotate(-1.5deg);
	}
	100% {
		transform: scale(1.025, 1.03) translate(0.07vh, 0.18vh) rotate(-1.5deg);
	}
}

:root {
	--bg-color: rgb(0, 0, 0, 1.0);
	
	--bg-color-accent: rgb(50, 50, 70, 0.1);
	--text-color: rgb(254, 254, 254, 0.8);
}
  
body {
	font-family: Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	overflow-y: auto;	
	overflow-x: hidden;
}
  
.dreaming-fx {
	animation: float-breath 4s infinite;
	animation-direction: linear;
	padding-top: 1.0vh;
}

.dreaming-fx-ground {
	animation: float-ground 4s infinite;
	animation-direction: linear;
	padding-top: 1.0vh;
}

.header {
	min-height: 12vw;
	width: 100%;
	color: white;
	text-align: center;
	line-height: 5vh;
	caret-color: transparent;
	cursor: default;
}

.content {
	width: 100%;
	display: flex;
	flex-direction: horizontal;
	align-items: start;
	justify-content: center;
}

.page-bg-deep {
	background-image: url("img/bluewatertreemoon.gif");
	left: 0%;
	top: 0;
	height: 100%;	
	width: 100%;
	opacity: 0.07;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
}

.content-inner {	
	#background-color: var(--bg-color-accent);
	border-radius: 25px;
	width: 85vw;
	max-width: 120vh;	
	padding: 20px;
	box-sizing: border-box;
	min-height: 65vh;
}

.footer {
	width: 85vw;
	display: flex;
	flex-direction: horizontal;
	align-items: center;
	justify-content: center;
	padding: 10px 0px 20px 0px;
}


.footer > * {
	margin: 0px 15px 0px 15px;
}

h1 { /* Title dreamy fx */
	font-family: 'Raleway Dots', cursive, Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;	
	font-weight: 400;
	font-size: 10vh;
	line-height: 3vh;
	color: var(--text-color);
	text-align: center;
}

h2 {
	text-align: center;
	font-size: 150%;
	font-weight: 300;
	margin: 0px;
	opacity: 0.9;
}

p, a {
	font-size: 100%;
}

a:link, a:visited, a:hover {
	color: var(--text-color);
	text-decoration: none;
	opacity: 0.6;
}

a:hover {
	opacity: 1.0;
}

.google-play-app-container {
	display:flex;
	flex-direction: horizontal;
	position: relative;
	width: 100%;
	justify-content:center;
	align-items:center;
	flex-wrap: wrap;
}

.google-play-app-container > a {
	display:flex;
	flex-direction: column;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	width: 36vh;
	min-width: 300px;
	justify-content:center;
	align-items:center;
	flex-wrap: wrap;
	padding-bottom: 16px;	
	padding: 20px 0 20px 0;
	border-radius: 25px;
  	background: rgba(50,75,100,0.3);
	cursor: pointer;
	opacity: 0.8;	
	box-shadow: 0 0 10px 10px rgba(25,25,50,0.5);
	margin-top: 8vh;
}

.google-play-app-container > a:hover {
  	background: rgba(50,75,100,0.34);	
	box-shadow: 0 0 10px 10px rgba(25,25,50,0.7);
	opacity: 0.95;	
}

.google-play-app-container > p {	
	margin-top: 1.5vh;
	margin: 0.5vh;
	text-align: center;
}

.google-play-app-img {
	height: 50px;
	width: 180px;
	opacity: 0.75;	
}


@media screen and (max-width: 800px) {
	.footer {
		font-size: 86%;
	}
	.footer > a {
		margin: 0px 10px 0px 10px;
	}	
	h1 {
		font-size: 8vh;
	}
	h2{
		font-size: 125%;
	}
}