@charset "utf-8";
body, html {
    height: 100%;
    margin: 0;
    font: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

.bg-image{
    background-image:url(../IMAGES/subpages_images/images2.jfif);
    filter: blur(8px);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.bg-text{
    background-color: rgb(0, 0, 0);
    background: rgba(255,192,203,0.8);
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

h1{
    font: 1.5em;
    text-align: center;
    text-transform: capitalize;
}

form{
    margin: 0 auto;
    width: 70%;
    padding: 1em;
    border: 1px solid #ccc;
    border: 1em;
}

fieldset{
    border: 1px solid lightgrey;
    margin: 10px;
}

legend{
    font-weight: 700;
}

div + div{
    margin-top: 1em;
}

input, textarea{
    width: 200px;
    border: 1px solid #999;
    
}

textarea{
    vertical-align: top;
    height: 12em;
    resize: vertical;
}

button{
    margin: .5em;
    font-size: 1em;
    text-transform: capitalize;
    background-color: #F9F;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 2px;
}

#submitbutton{
    display: flex;
    justify-content: center;
}
.logo{
	font-size: 50px;
	font-family: playball;
	color: white;
	font-weight: lighter;
	text-align: center;
}
.log{
	background-color: #d09fca;
}
/*************Nav bar****************/
ul li a span{
	font-family: playball;
}
ul li a:hover{
	background-color: orchid;
	color: white;
	border-radius: 5%;
}
.logo{
	font-size: 50px;
	font-family: playball;
	color: white;
	font-weight: lighter;
	text-align: center;
}
.log{
	background-color: #d09fca;
}
/*************Nav bar****************/
ul li a span{
	font-family: playball;
}
ul li a:hover{
	background-color: orchid;
	color: white;
	border-radius: 5%;
}
/* footer*/
footer{
	position: sticky;
	width: 100%;
	background: #d09fca;
	min-height: 100px;
	padding: 20px 50px;
	display: flex;   
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
footer ul{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	flex-wrap: wrap;
	
}
footer ul li{
	list-style: none;
}
footer ul li a i{
	font-size: 2em;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
	
	
}
footer ul li a i:hover{
	transform: translateY(-10px);
	
}
.menu{
	position: relative;
	width: 100%;
	min-height: 10px;
	padding: 0px 10px 0PX;
	display: flex;   
	justify-content: center;
	align-items: center;
	
}
.menu li{
	list-style: none;
}
.menu li a{
	font-size: 1.2em;
	color: white;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
	text-decoration: none;
	opacity: 0.5;
	font-weight: bolder;
}
.menu li a:hover{
	transform: translatey(-10px);
	opacity: 1;
}
footer p{
	color: #fff;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 0px;
	font-size: 1.1em;
}
.wave{
	position: absolute;
	top: -100px ;
	left: 0;
	width: 100%;
	height: 100px;
	background: url("../wave.png");
	background-size: 1000px 100px;
}
.wave#wave1{
	z-index: 1000;
	opacity: 1;
	bottom: 0;
	animation: animateWave_02 4s linear infinite;
}
.wave#wave2{
	z-index: 999;
	opacity: 0.5;
	bottom: 10px;
	animation: animateWave 4s linear infinite;
}
.wave#wave3{
	z-index: 1000;
	opacity: 0.2;
	bottom: 15px;
	animation: animateWave_02 3s linear infinite;
}
.wave#wave4{
	z-index: 999;
	opacity: 0.7;
	bottom: 20px;
	animation: animateWave 3s linear infinite;
}
@keyframes animateWave{
	0%{
		background-position-x:1000px; 
	}
	100%{
		background-position-x:0px; 
	}
}
@keyframes animateWave_02{
	0%{
		background-position-x:0px; 
	}
	100%{
		background-position-x:1000px; 
	}
}
p{
	text-align: center;
	text-align: justify;
}