@charset "utf-8";
/* CSS Document */

body {
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 16px;
	color: #fff;
	background-image: url("../images/rd_bg2.jpg");
	
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'julee', sans-serif;
}
h1 {
	font-size: 4rem;
}
h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1rem;
}
h5 {
	font-size: .75rem;
}
h6 {
	font-size: .25rem;
}

.header {
	background-color: #087840;
	padding: 1rem 2rem;
	color: darkgreen;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 5px 2px 2px #000000;
	border-bottom: 5px solid #fff;
	
	
}
.menu {
	width: 50%;
}
.menu ul {
	display: flex;
	justify-content: space-around;
}
.menu li {
	
	list-style-type: none;
	font-size: 1.25rem;
}
.menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	
}
.menu li a:hover {
	color: #11F784;
	border-bottom: 4px solid #fff;
	transition: 2s ease 1s;
	
}
.container {
	padding: 2rem;
	width: 80%;
	margin: 0 auto;
}
.comingSoon {
	background-color: #A3A0A0;
	opacity: 0.4;
	padding: 1rem 2rem;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
}
.comingSoon h1, p {
	opacity: 1;
}
.links a {
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	
}
.links a:hover {
	color: #11F784;
	border-bottom: 4px solid #fff;
	transition: 2s ease 1s;
	
}
.footer {
	background-color: #087840;
	padding: 1rem 2rem;
	color: #06522C;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
    bottom: 0;
    width: 100%;
	
}
.social {
	background-color: #086c3a;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
	padding: 1rem 2rem;
}


