@charset "UTF-8";
/* CSS Document */
		
		
html, body {
	margin:0; padding:0;
}
		
body {
	background-color: #000;
	font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';
	font-size: 16px;
	line-height:1.2em;
    color: antiquewhite;
    box-sizing: border-box;
}

/* The hero image */
.hero-image {
	/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");

	/* Set a specific height */
	height: 250px;

	/* Position and center the image to scale nicely on all screens */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
			
}

/* Place text in the middle of the image */
.hero-image h1 {
    text-align: center;
    color: white;
    font-size:3em;
    padding-top:1.5em;
    margin:0;
}
		
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #04AA6D;
    color: white;
}


/*text */
p{
    text-align: justify;
	color: whitesmoke;
}

.col-left {
	float:left;
	padding: 1em;
	width: 45%;
}

.col-left::after {float: none;}

.col-right {
	float:right;
	padding: 1em;;
	width: 45%;
}

.col-right::after {float: none;}

.grid-after {
	content: '';
	display: block;
	clear: both;
}
	
.grid-sizer, .grid-item {
    width: 33.333%;
}
	
.grid-content img {
    display: block;
    width: 100%;
    transition-delay: 1s;
    transition: all 0.5s ease;
}
		
.grid-content img.show {
    width:110%;
    zoom:110%;
    margin-left:-5%;
    margin-top:-5%;
}

.grid-content {
    overflow:hidden;
    text-align:center;
    position:relative;
}
		
.grid-content .description{
    position:absolute; 
    height:0; 
    bottom:0; left:0; right:0; 
    padding:0; 
    background:rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    transition-delay: 0.2s;
    color:white;
}
		
.grid-content .description.show {
    height:20%;
    padding:10px;
}
		
.footer {
	position: fixed;
  	left: 0;
  	bottom: 0;
  	width: 100%;
	height: 3em;
  	color: white;
  	text-align: center;
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/4.png");
	background-position: center center no-repeat;
	background-size: cover;
}

dt{
	float:left;
	font-size:1.5em;
}

dd {
	margin-inline-start:90px;
	margin-bottom: 2em;
	font-size:1.2em;
}
		