@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}
/* This is the body selector*/

body {
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1em;
  background-color: black;
  line-height: 1.25rem;
}

/* This is an alternate body selector for white text*/
.altBodyText {
  font-family: "Lexend", sans-serif;
  color: white;
  font-weight: 200;
  font-style: normal;
  font-size: 1em;
  line-height: 1.25rem;
}

/* This is the header strip at the top for parallax effect*/
header {
  height: 300px;
  background-image: url("images/header-strip.jpg"); 
  background-size: cover;  
  background-position: center 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0px !important;
}


/* Some image styling */
img {
	width: 100%;
	height:auto;
	padding: 15px;
}

/* All Divs will be vertically aligned and padded */
div {
	padding: 20px;
	align-items: center;
}

/* For stacking of the columns */
.row {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}

/* outer container for divs to live in */
.outer {
	
	padding: 15px;
	background-color: white;

}

/* A strip with a background image */
.stripHeader1 {
  box-sizing: border-box;
  height: auto;
  background-image: url("images/dm-msg.jpg"); 
  background-size: cover;  
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0px !important;
  position: relative;  
}

/* Changes the image attr when inside stripHeader */
.stripHeader1 img {
  width: 100%;
  height: auto;
  object-fit: cover; 
}
/* Black box with transparency for white text */
.textbox {
	background-color: black;
	opacity: .75;
}

/* Gradient background for a strip */
.gradientStrip {
	background-image: linear-gradient(black,#505050 );
	width: 10rem;
	height: auto;
}

/* Bringing in the web font */
@font-face {
  font-family: 'devotion';
  src: url('fonts/devotion.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* H1 for the text header */
h1 {
	margin-left: 50px;
	font-family: 'devotion';
	font-size: 7em;
	color: white;
	text-shadow: 2px 2px 10px gray;
	letter-spacing: 10px;
}
/* H2 for bigger text */
h2 {
  font-family: "Hepta Slab", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3em;
  line-height: 3rem;
	text-align: right;
}





/* This is additional css to help control the div column sizing*/
.col-1 {width: 8.33%;} 
.col-2 {width: 16.66%;} 
.col-3 {width: 25%;} 
.col-4 {width: 33.33%;} 
.col-5 {width: 41.66%;} 
.col-6 {width: 50%;} 
.col-7 {width: 58.33%;} 
.col-8 {width: 66.66%;} 
.col-9 {width: 75%;} 
.col-10 {width: 83.33%;} 
.col-11 {width: 91.66%;} 
.col-12 {width: 100%;} 

/* Clear floats after column */
.row:after {
	content: "";
	display: table;
	clear: both;
}
/* Responsive layout - makes the columns stack */

@media (max-width: 600px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
  .col-7, .col-8, .col-9, .col-10, .col-11 {
    width: 100%;
    display: block;
  }
	img {
        width: 100vw; /* Make image take the full viewport width */
        height: auto; /* Maintain aspect ratio */	
		
	}
		h2 {
      text-align: center;
  	  font-size: 2.5em;
		
	}
}
 /* Removes the default underline */
a {
  text-decoration: none;
	color:white;
}

/* footer validation area */
.footer_validation {
	background-color: black;
	padding: 20px;
	text-align: center;
	font-size: 11px;
}
