body {
    margin: 0;
	font-family: sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
}

header {
    position: fixed;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.15);
    width: 100%;
    height: 60px;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #2a603a;
    font-family: "Arial", sans-serif;
	display: none;
}

header .container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: row;
}

header .container-left {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 60px;
}

header a {
    height: 100%
}

header a img {
    height: 100%;
    width: auto;
    margin: 0 5px 0 0;
}

header .site-name {
    font-size: 25px;
    color: #fefefe;
    font-family: "Arial", sans-serif;
    align-content: center;
    width: 300px;
    text-align: left;
    height: 100%;
}

header nav {
  display: inline-block;
}

header nav ul li {
  display: inline-block;
}

header nav ul li a {
  color: #fefefe;
  font-size: 20px;
  letter-spacing: 0.37px;
  margin-right: 30px;
  text-decoration: none;
}

#img-bw {
	display: none;
}

header nav ul li:last-of-type a {
  margin-right: 0;
}
main {
	margin-top: 60px;
}

.column {
    text-align: left;
    padding: 20px;
    max-width: 100%; 
}
.column:nth-child(even) {
    background-color: #eee;
}
.column ul li {
	margin-top: 12px;
}
.column ul li:first-of-type {
	margin-top: 0;
}
.title-date br {
    display: block;
}
h2 {
    text-align: center;
    margin-top: 10px;
	font-family: serif;
}
h1 {
    text-align: center;
    font-size: 35px;
    margin: 15px auto 10px auto;
	font-family: serif;
}
h3 {
    text-align: center;
	font-family: serif;
}
ul li h4 {
    text-align: left;
    margin-bottom: 0px;
}
.sermon-notes {
    text-align: center;
    display: none;
}
.sermon-notes h2 {
    margin-bottom: 0;
}
.site-note {
    font-size: 12px;
    text-align: center;
}
.song-service ul {
    list-style: none;
    padding: 0;
}
.song-service ul li {
    margin-top: 5%;
}
.column img {
    max-width: 100%;
    margin: 0 auto 10px auto;
}
.contact-info {
    width: 100%;
    font-size: 14px;
    margin: auto;
    display: grid;
}
.contact-info table{
    margin: auto;
}
.title-date h2 {
    margin: 0px auto 0 auto;
}
.title-date h3 {
    margin-top: 0;
}

tr:nth-child(even) {
    background-color: #eeeeee;
}
.contact-info td {
    padding: 3px auto;
    text-align: center;
}

/*
 *
 * ---------- Media Queries ----------

 */
@media print {
    @page {
        size: landscape;
	margin: 0;
    }
	main {
		margin-top: 0;
	}
	header {
		display: none;
	}
    .container {
	flex-direction: row;
	max-width: 100%;
    }
    .container:first-of-type {
        page-break-after: always;
    }
    .column {
	width: 33%;
    }
    .column.middle {
        border-left: 2px dotted #eeeeee;
        border-right: 2px dotted #eeeeee;
    }
    .sermon-notes {
        display: block;
    }
    .container.first {
        flex-direction: row-reverse;
    }
	#img-bw {
		display: block;
	}
	#img-color {
		display: none;
	}
}
@media screen and (max-width: 600px) {
    
}
@media screen and (min-width: 600px) {
    .container {
        max-width: 900px;
    }
    .column {
        width: 100%;
        margin: auto;
    }
    .title-date br {
	display: block;
    }
}
@media screen and (min-width: 1200px) {
    .container {
	max-width: 1400px;
    }
    .column {
	
    }
    .title-date {
	position: relative;
    }
    .title-date h1 {
        font-size: 54px;
	position: absolute;
	top: 16%;
	left: 8%;
	color: #2a603a;
    }
    .title-date h1 br {
        display: none;
    }
    .title-date h2 {
	display: none;
    }
    .title-date h3:first-of-type {
    	position: absolute;
	font-size: 30px;
	bottom: 8%;
	left: 38.5%;
	color: white;
    }
    .title-date h3:last-of-type {
    	position: absolute;
	font-size: 20px;
	bottom: 5%;
	left: 45%;
	color: white;
    }
    .contact-info {
        font-size: 20px;
	margin: auto;
	width: auto;
    }
    .column .song-service {
	max-width: 350px;
	margin: auto;
    }
    .container.second {
	flex-direction: row;
	border-bottom: 50px solid #eee;
    }
    .container.second .column {
	max-width: 33%;
	margin: 0 auto;
    }
}
