@font-face {
    font-family: 'cinzelregular';
    src: url('../fonts/Cinzel-Regular-webfont.eot');
    src: url('../fonts/Cinzel-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Cinzel-Regular-webfont.woff') format('woff'),
         url('../fonts/Cinzel-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Cinzel-Regular-webfont.svg#cinzelregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin:0;
    padding:0;
    font-family:Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-size:16px;
    line-height: 1;
}

* {
    box-sizing: border-box;
}
img {
    max-width:100%;
}
header {
    position:relative;
    height: 40vh;
}
header img {
    position:absolute;
    width: 80%;
    max-width: 550px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}
#contentWrapper {
    position: relative;
    height:60vh;
    border-top: 3px solid #999999;
    border-bottom: 3px solid #999999;
}
#contentWrapper:before {
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,.2);
    z-index:20;
}
#contentWrapper:after {
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background-image:url(../img/stripes.png);
    opacity: 0.5;
    z-index:30;
}
#content {
    position: absolute;
    text-align: center;
    width:100%;
    padding:15px;
    top:50%;
    transform: translateY(-66%);
    z-index: 50;
}
#backgroundImage {
    position: absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background-image:url(../img/background_construction.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position: 50% 50%;
    opacity: .8;
    z-index:10;
}
h1 {
    font-family:cinzelregular;
    font-size: 3rem;
}
p {
    font-size: 1.375rem;
}
a[href^=mailto] {
    display:block;
    max-width: 220px;
    margin: 0 auto;
    padding:15px 0;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    background-color:#000080;
    color:#FFFFFF;
}
a[href^=mailto]:hover {
    background-color:blue;
}
footer {
    background-color: #222222;
    text-align: center;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
footer a {
    color:#FFFFFF;
}
address {
    font-style: normal;
    font-size: 1.25rem;
    color: #F8F8F8;
}

@media (max-width: 400px) {
    h1 {
        font-size:2.5rem;
    }
    #content {
        transform: translateY(-50%);
    }
}
@media (max-height: 575px) {
    #contentWrapper {
        height:75vh;
    }
}