@import url('https://fonts.googleapis.com/css?family=Roboto');
/* CSS Document */

nav {
	float: right;
	/*padding-right: 40px;*/
	padding-right: 25%;
}

      html, body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        overflow: hidden;
      }

      html:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: url("./img/dlfromdam.JPG") no-repeat center;
        background-size: cover;
        background-attachment: fixed;
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
        z-index: -1;
      }

      body {
        background-color: rgba( 255, 255, 255, 0 );
        font-family:Roboto;
        font-size: 100%;
       overflow: auto;
			}

		header {/*padding-left: 40px;*/
				padding-left: 20%;
				padding-top: 20px;
			}			

nav ul li {
	list-style-type: none;
	/*padding-left: 20px;*/
	text-align: right;
}

nav ul li a {
	text-decoration: none;
	color: #115B8D;
}

nav ul li a:hover {
	color:#B32123;
}


nav ul li a:active {
	color: #ACAB16;
}

.hero-box {
	/*opacity: .9;*/
	height: 125px;
	/*background-color: #BECAEC; */
	font-family:Roboto;
	font-size: 28px;
	text-align: center;
}


.container{
    max-width: 700px;
    width: 100%;
    margin: 25px auto;
	font-family:Roboto;	font-size: 18px;
    text-align: left;
	color:black;
    padding: 15px;
	background-color: rgba(163,202,214,.7);
}

.bottom{
	max-width: 700px;
	width: 100%;
    margin: 25px auto;
	color:aliceblue;
	font-family:Roboto;	font-size: 16px;
    text-align: center;
	text-shadow: 2px 2px 4px #000000;
    padding: 15px;
	background-color: rgba(163,202,214,.7);
	/*opacity:.5;*/
}


.col img {
	width: 100%;
	height: auto;
	display: block;
}

.col {
	width: 60%;
	float: center;
	margin-left: 20%;
	margin-top: 2%;
}


/*TABLET*/
@media (max-width:768px){
	h1 {
		font-size: 40px;
		text-align: center;
		padding-left: 0px;
	}
	
	.col {
		width: 48%;
	}
	nav {
	float: right;
	/*padding-right: 40px;*/
	padding-right: 5%;
}
}


/*MOBILE*/
@media (max-width:400px){
	h1 {
		font-size: 28px;
	}
	.col {
		width: 98%;
	}
	.hidden-xs {
		display: none;
	}
	header {font-size: 50px;
	}
	nav {
	float: right;
	/*padding-right: 40px;*/
	padding-right: 0%;
}
}


