body{
	background-image:url('clouds.png');
	font-family:"Helvetica", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
}

.logo{
	width: 50%;
	padding-top: 15px;
}

#island1 {
	padding-top: 150px;
	transform: translatey(0px);
	animation: float 8s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

#island2 {
	margin-top: -40px;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

#island3 {
	padding-top: 130px;
	transform: translatey(0px);
	animation: float 10s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

#island4 {
	padding-top: 100px;
	transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

h1{
	padding-top: 35px;
	/*color: 	#84A812;*/
	margin-left: -130px;
	font-size: 45px;
}

h2{
	color: 	#0A29DE;
	text-align: center;
	margin-top: -100px;
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(255, 255, 255);
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 255, 255, 0.75);
	border-radius: 10px;
	border: 1px;
	position: relative;
/*	border-style: solid;
	border-color: black;*/
	padding: 5px;

}

.bigger {
	margin-top: -130px;
}

h3{
	text-align: center;
	color: grey;
	margin-top: -55px;
	font-size: 18px;
	padding: 5px;
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(255, 255, 255);
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 255, 255, 0.75);
	border-radius: 10px;
	border: 1px;
/*	border-style: solid;
	border-color: black;*/
	position: relative;
}

.not_big {
	margin-top:-85px;
}

@keyframes float {
	0% {
		/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
		transform: translatey(0px);
	}
	50% {
		/*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
		transform: translatey(-20px);
	}
	100% {
		/*box-shadow: 0 0px 15px 0px rgba(0,0,0,0.6);*/
		transform: translatey(0px);
	}
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


#island2 {
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

.more { 
    display: none;
    font-size: 18px;
    text-decoration: none;
}

.bigger:hover {
	margin-top: -160px;	
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(169, 169, 169);
    /* RGBa with 0.6 opacity */
    background-color: rgba(169, 169, 169, 0.75);
    color: black;
}

.big:hover {
	margin-top: -120px;	
	/* Fallback for web browsers that don't support RGBa */
    background-color: rgb(169, 169, 169);
    /* RGBa with 0.6 opacity */
    background-color: rgba(169, 169, 169, 0.75);
    color: black;
}

a:hover {
	text-decoration: none;
}

h2:hover .more {
    display: block;
    
}

@media only screen and (max-width: 768px){

#island1, #island3 {
	display: none;
}

#island2 {
	margin-top: 20px;
}

#island4 {
	padding-top: 140px;
}

h1{
	padding-top: 9px;
	font-size: 32px;
	padding-left: 60px;
}

}

