*{
	margin: 0;
	padding: 0;

}

body.home{
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}
body.reef{
	background-image: url(img/reef2.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}

body.amazon{
	background-image: url(img/amazon1.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}
body.canyon{
	background-image: url(img/canyon1.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}
body.everest{
	background-image: url(img/everest1.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}

body.aurora{
	background-image: url(img/aurora1.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}
body.victoria{
	background-image: url(img/victoria-falls1.jpg);	
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;

}

div.main{
	width: 60%;
	margin: 0 auto;
	background-color:rgba(255, 255, 255, 0.6) ;
	padding: 30px;
}
div.row{
	display: flex;
}
div.pic{
	width: 30%;
	margin: 20px;
	box-shadow: 10px -16px rgba(50, 50, 50, 0.2);

}
div.pic img{width: 100%;

}
h1, h2, p{
	font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

}
p{
	font-size: 20px;

}
p.pidpys{
		font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
text-decoration: none;
color: #000;
}
ul{
	background-color: #c7d0e0;
	display: flex;
	justify-content:space-around;
	min-height: 50px;
	padding-top: 10px;
}

li{
/*	border: 1px solid #000;*/
	list-style-type: none;
	width: 40px;
	margin: 0 0 0 0!important;
}

a{
		font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
text-decoration: none;
margin: 0 0 0 0!important;
}

a:hover{
	font-size: 1.1em;
	font-weight: bold;
    text-shadow: #7b7b7b 1px 5px 5px;
}

input{
	display: none;
}


/*new*/

div.pic:hover{
	width: 35%;
	border: 3px solid #0dc4b9;
	border-radius: 20px;
	 overflow: hidden;
	 text-align: center;
	 transition-duration:1s ;

}
/*https://devdevout.com/css/css-animated-backgrounds*/