/* CSS file defining styles for Living Hope website */
	* {
		box-sizing: border-box;
		}
		.pageheader {
		float:center;
		text-align:center;
		width:100%;
		}
		.menu {
		float: left;
		width: 20%;
		margin-top: 25px;
		margin-right: 10px;
		}
		.menuitem {
		padding: 8px;
		/* border-right: 5px; */
		/* border-bottom: 1px solid #C5C2C2; */
		margin-bottom: 5px;
		}
		.left-box {
		padding: 10px 15px;
		margin-top: 140px;
		margin-right: 10px;
		margin-bottom: 10px;
		background-color: lightblue;
		border: 6px ridge red;
		text-align: justify;	
		}
		.main {
		float: left;
		width: 60%;
		text-align: justify;
		padding: 10px 15px;
		margin-top: 7px;
		}
        .pic {
        width: 100%;
        height: auto;
        }
		.quote {
		margin-left: auto;
		margin-right: auto;
		width: 90%;
		}
		.right {
		background-color: lightblue;
		float: right;
		width: 20%;
		padding: 10px 15px;
		margin-top: 7px
		}

		.pending {
		color: red;
		}

		@media only screen and (max-width: 800px) {
			/* For tablets: */
			.main {
				width: 100%;
				padding:0;
			}
			.right, .menu { 
				width: 100%;
			}
		}
		@media only screen and (max-width: 500px) {
			/* For mobile phones: */
			.menu, .main, .right {
			width: 100%;
			}
		}

