/*GLOBAL*/
body{
	background-image: url('images/ocean.webp');
	background-size: cover;
	background-attachment: fixed;
	font-family: "Montserrat", sans-serif;
}
h1{
	font-family: 'Oswald', sans-serif;
	color: white;
	font-size: 50px;

}
.global_content{
	margin: 150px 10% 50px 10%;
}

.intro_pages{
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #89cfc7;
	margin: 50px -10%;
	border-radius: 15px;
}
.intro_bar{
	display: block;
	width: 100px;
	height: 2px;
}
.intro_text{
	width: 70%;
	padding: 50px;
	font-size: 25px;
}
.intro_pic{
	width: 30%;
}
.intro_pic_img{
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.graphs_section{
	display: flex;
	flex-wrap: wrap;
}
.navbar{
	position: fixed;
	top: 0px;
	width: 100%;
	background-color: #013740 !important;
}

.nav-link{
	color: white !important;
	font-family: "Oswald", sans-serif;
	font-weight: bold;
	border-radius: 5px;
	margin: 10px;
	padding: 10px 30px;
}
.nav-link:hover{
	background-color: #00909f;

}

.donation_btn{
	border: 1px solid white;
	border-radius: 100px;
	padding: 10px 20px;
	font-family: "Kaushan Script", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: white;
	text-decoration: none;
	justify-content: center;
	margin: 10px;
	width: 150px;
	transition: all 0.2s;
}
.donation_btn:hover{
	background-color: #FFE585;
	border: 1px solid #FFE585;
	margin: 10px 0;
	width: 170px;
	justify-content: center;
	color: #013740;
}


.title_area{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/*GLOBAL*/


/*GRAPHIQUES*/

#g30_box{
	background-color: rgba(255, 255, 255, 0.9);
	margin: 15px;
	padding: 25px;
	border-radius: 15px;

}
.graph_box{
	background-color: rgba(255, 255, 255, 0.9);
	margin: 15px;
	padding: 25px;
	border-radius: 15px;
	width: 45%;
	/*min-height: 700px;*/
}

.graph_box strong{
	font-family: "Kaushan Script";
}
/*GRAPHIQUES*/



/*FOOTER*/
footer{
	background-color: black;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	background-color: #013740;
	padding: 50px 0;
	text-align: center;
}

footer > *{
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}

footer h3{
	font-family: "Oswald";
	text-align: center;
	color: white;
	text-align: center;
}

footer ul{
	list-style: none;
	line-height: 2;
}

.footer-links a{
	color: white;
	text-transform: capitalize;
	text-decoration: none;
}
.footer-links a:hover{
	color: #ffe586;
}

.footer_separator{
	display: block;
	width: 75px;
	height: 2px;
	background-color: yellow;
	text-align: center;
	margin: 5px 0 25px 0;
}
/*FOOTER*/