*{
	margin: 0;
	padding: 0;
	font-family: "Reem Kufi";
}
.container{
	width: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	background-color: #23293b;
	min-height: 100vh;
}
.nav-bar{
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 50px;
	padding-top: 10px;
	position: sticky;
	background-color: #23293b;
}
.nav-bar .home-icon img{
	width: 80px;
	height: 80px;
	object-fit: contain;
}
.nav-bar .hamburger-menu{
	display: flex;
	flex-direction: column;
}
.nav-bar .hamburger-menu .bar1, .bar2, .bar3{
	width: 35px;
	height: 5px;
	background-color: #d9d9d9ff;
	margin-bottom: 5px;
}
.main-menu{
	height: 100vh;
	width: 100vw;
	background-color: white;
	z-index: 10;
	position: fixed;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	box-sizing: border-box;
	visibility: hidden;
}
.main-menu-item{
	width: 150px;
	height: 150px;
	background-color: teal;
	border-radius: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding-top: 10px;
}
.main-menu-item img{
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
	object-fit: contain;
}
.main-menu-item h4{
	color: white;
	letter-spacing: 1px;
}
.main-menu-item a{
	display: flex;
	align-items: center;
	flex-direction: column;
	text-decoration: none;
	width: 100%;
	height: 100%;
}
.photos-container{
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex: 1;
}
.image-container{
	display: flex;
	height: 450px;
	width: 250px;
	margin-left: 30px;
	flex-direction: column;
	align-items: center;
}
.image-container img{
	width: 100%;
	height: 80%;
	object-fit: cover;
	border-radius: 20px;
}
.name-tag{
	display: flex;
	flex-direction: row;
	margin-left: 10px;
	margin-top: 5px;
	align-items: center;
	color: #d9d9d9ff;
}
.name-tag img{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 10px;
}
.button-container{
	width: 100%;
	height:40px;
	display: flex;
	justify-content: space-around;
	margin-bottom: 15px;
}
.button-container button{
	background-color: #afafaf;
	border: none;
	width: 80px;
	height: 40px;
	border-radius: 10%;
}
.button-left{
	background-image: url("../imgs/icons/button-back.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.7;
}
.button-right{
	background-image: url("../imgs/icons/button-next.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.7;
}
.button-left:hover, .button-right:hover{
	opacity: 0.9;
}

/***Upload.php***/
.upload-container{
	width: 100%;
	height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #E9E9E9;
}
.upload-container form{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
}
.upload-container button{
	height: 30px;
	width: 150px;
	background-color: #20B35A;
	border: none;
	color: white;
}

/**Signin.html**/
.login-section{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-top: 100px;
}
.login-section img{
	width: 250px;
	height: 250px;
	object-fit: contain;
	margin-top: -25px;
}
.login-form{
	width: 250px;
	margin-bottom: 10px;
}
.login-form label{
	color: #1E88E6;
	font-weight: bold;
	padding-left: 5px;
}
.login-form input[type="text"],input[type="password"]{
	width: 250px;
	margin-bottom: 20px;
	height: 35px;
	border-radius: 10px;
	border: 2px solid #C8C5C3;
	box-sizing: border-box;
	padding-left: 10px;
	font-size: 1.1em;
}
.login-form input[type="submit"]{
	width: 250px;
	height: 40px;
	background-color: #1E88E6;
	border: none;
	border-radius: 10px;
	font-size: 1.05em;
	color: white;
	letter-spacing: 1px;
	-webkit-transition: background-color 0.3s ease;
}
.login-form input[type="submit"]:hover{
	background-color: #512205;
	-webkit-transition: background-color 0.3s ease;
}
.login-section a{
	margin-bottom: 15px;
	text-decoration: none;
	color: #512205;
	font-weight: bold;
}
.login-section a:hover{
	color: #1E88E6;
}
.login-error{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	min-width: 275px;
	height: 50px;
	background-color: #F9E4E8;
	color: #D6405C;
	margin-bottom: 30px;
	border-radius: 20px;
}

/*dashboard.php*/
.profile-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-top: 30px;
	background-color: #E0E0E0;
	margin-top: 80px;
}
.profile-pic{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #22B14C;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
	color: white;
	font-size: 2em;
	box-shadow:0 5px 15px rgba(0, 0, 0, 0.3);
}
.profile-name{
	color: #22B14C;
	font-size: 2em;
	font-family: 'Poppins', sans-serif;
}
.profile-container h2{
	display: flex;
	margin-top: 30px;
	border-bottom: 5px solid black;
}
.profile-container h3{
	margin-top: 20px;
}
.profile-container input[type="submit"]{
	margin-bottom: 20px;
	border: none;
	background-color: #7092BE;
	padding: 5px;
	border-radius: 5px;
}
.profile-container input[type="submit"]:hover{
	background-color: #88A4CA;
}
.dashboard-msg{
	height: 30px;
	min-width: 180px;
	max-width: 100%;
	background-color: black;
	color: white;
	font-weight: heavy;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	padding: 5px;
}
.my-posts{
	width: 100%;
	display: flexbox;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 20px;
	height: 500px;
}
.my-posts-image{
	width: 150px;
	height: 200px;
	object-fit: contain;
	padding: 20px;
}
.my-posts-image img{
	border-radius: 30px;
}
.mpesa-payment{
	height: 30px;
	min-width: 180px;
	max-width: 100%;
	background-color: green;
	color: white;
	font-weight: heavy;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	padding: 5px;
}

/*people.php*/
.people-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 100px;
}
.people-container .main-menu-item{
	margin-top: 20px;
}

/*about-us.php*/
.about-container{
	display: flex;
	width: 100%;
	height: 100vh;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

/*signup.php*/
.signup-container{
	width: 100%;
	background-color: #F2EDE8;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}
.footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100px;
	background-image: url("../imgs/icons/bridgewater.jpg");
	box-sizing: border-box;
	padding-top: 20px;
	margin-top: 30px;
}
.footer a{
	color: white;
	text-decoration: none;
	margin-bottom: 10px;
}
.footer a:hover{
	color: #1E88E6;
}
.footer .copyright{
	color: white;
	margin-top: 10px;
}
.login-form{
	padding-top: 50px;
	width: 250px;
}
.lblNumber{
	color: grey;
}