@import url('https://fonts.googleapis.com/css?family=Merriweather');

html {
    height: 100%;
}

body{
	padding:0;
	height: 100%;
    margin: 0;
    background:#6683ac url('images/header.jpg') no-repeat top;
	font-family: 'Merriweather', serif;
     position:relative;   
}
#header{
    text-align:center;
    padding-top:115px;
    margin-bottom:30px;
    color:#666;
}
#header img{
    margin-bottom:15px;
}
#header a{
    color:white;
    text-decoration:none;
    font-size:21px;
}
#boundary{
	max-width:1200px;
	width:94%;
	margin:0 auto;
}
#images{
    width:30%;
    margin-right:5%;
    float:left;
}

#images img{
    width:100%;
    height:auto;
    border:solid 2px #fff;
}
#text{
    text-align:center;
    margin:0 auto;
    width:65%;
}
#flash{
    background:darkturquoise;
    width:140px;
    height:140px;
    border-radius:50%;
    padding:15px;
    text-align:center;
    position:absolute;
    top:25px;
    right:25px;
    color:#fff;
    transform:rotate(2deg);
    display: flex;
    align-items: center;
}
#content{
	text-align:left;
	color:#fff;
}
#content h1{
	font-size:48px;
	margin: 0 0 10px;
	line-height:0.7;
	font-weight:normal;
}

#content h1 span{
	color:darkturquoise;
	white-space:nowrap;
    font-size:24px;
    letter-spacing:3px;
}

#content p{
	font-size:18px;
	margin:0 0 18px;
	line-height:150%;
}

#content p a{
 color:#fff;   
}

#content p a:hover{
    color:darkturquoise;
}

footer{
    text-align:center; 
}
footer h2{
    margin-bottom:7px;
    font-size:24px;
    font-weight:normal;
        color: darkturquoise;
}
@media screen and (max-width: 800px) {
    #flash{
        top: 140px;
        right: unset;
        left: 50%;
        transform: translateX(-50%) rotate(2deg);
    }
}

@media screen and (max-width: 750px) {
    #images,#text{
        width:100%;
        margin-bottom:40px;
    }
}