* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* Style the header */
.header {
    padding: 100px;
	background-image: url("images/Wheatfield.jpg");
	background-size: cover;
	background-position: center center;
    background-color: #afdfff;
}

/* Style the top navigation bar */
.home {
    overflow: hidden;
    background-color: #333;
}

/* Style the navigation bar links */
.home a {
	display: inline-block;
    float: left; /* Make sure that the links stay side-by-side */
	color: white; /* White text color */
    text-align: center; /* Center the text */
    padding: 14px 25px; /* Add some padding */
    text-decoration: none; /* Remove underline */
}

/* Change color on hover/mouse-over */
.home a:hover {
    background-color: #ddd; /* Grey background color */
    color: black; /* Black text color */
}

/* Column container */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.nav {
    flex: 20%; /* Set the width of the sidebar */
    background-color: #f1f1f1; /* Grey background color */
    padding: 20px; /* Some padding */
}
.nav a {
	display: block;
	color: black;
	text-align: left;
	padding: 14px 25px;
	text-decoration: none;
}

.nav a:hover{
	background-color: #fff;
	color: black;
}

/* Main column */
.main {
    flex: 80%; /* Set the width of the main content */
    background-color: white; /* White background color */
    padding: 20px; /* Some padding */
	line-height: 1.5;
}

.footer {
    padding: 20px; /* Some padding */
    text-align: center; /* Center text*/
    background: #ddd; /* Grey background */
}

.verses {
	flex: 80%;
	background-color: white;
	padding: 20px;
}

.verses li {
	margin: 0 0 20px 0;
}

.welcome{
    flex: 80%; /* Set the width of the main content */
    background-color: white; /* White background color */
    padding: 20px; /* Some padding */
}

.announcement{
    flex: 80%; /* Set the width of the main content */
    background-color: white; /* White background color */
    padding: 20px; /* Some padding */
	line-height: 1.5;
}

.announcement p{
	text-indent: 50px;
}