header {
	width: 100%;
	height: 200px;
	background-position: top;
	background-image: url("/assets/headpic.png");
    background-color: #172b24;
	background-repeat: no-repeat;
	background-size: auto 1080px;
	background-clip: border-box;
}
header>div.ctbox{
    margin: 0 auto;
    height: 100%;
    position: relative;
    width: 80%;
    max-width: 1080px;
}
#title{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    padding: 0.5em 1em;
    color: white;
}
#title>h1{
    font-size: 3em;
    font-weight: normal;
}
#title>h2{
    font-size: 1.5em;
    font-weight: normal;
}
#title>hr{
    border: solid 1px white;
}

@media screen and (max-width: 800px){
    header>div.ctbox{
        height: 100%;
        width: 100%;
    }
}