@charset "utf-8";
/* CSS Document */
/* Add a red background color to the top navigation */
.topnav {
  background-color:#7E0000;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #DFD9AB;
  text-align: center;
  padding: 14px 93.9px;
  text-decoration: none;
  font-size: 40px;
  font-family: 'Hind', sans-serif;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color:#191312;
  color:#DFD9AB;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color:#191312;
  color:#DFD9AB;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
.logo {display: block; margin-left: auto; margin-right: auto;}
.image1 {display: block; margin-left: auto; margin-right: auto;}
.h1 {font-family: 'Hind', sans-serif;color:#DFD9AB;font-size:40px;}
.footer {font-family: 'Hind', sans-serif;color:#DFD9AB;}
.h1 {font-family: 'Hind', sans-serif;color:#DFD9AB;font-size:40px;}
.h2 {font-family: 'Hind', sans-serif;color:#DFD9AB;}
.h3 {font-family: 'Hind', sans-serif;color:#DFD9AB;font-size:15px;}

/*This is where the Media Queries begin*/
	/* Baseline Smart Phone portrait */
	@media (min-width: 320px)
	{
		.divBg {background-color:#491000; width:300px; margin:auto; padding:3px;}
		.h1 {font-size:14px}
		.taskbar {font-size:14px}
	}
	/* Baseline Smart Phone landscape */
	@media (min-width: 480px)
	{
		.divBg {background-color:#491000; width:400px; margin:auto; padding:6px;}
		.h1 {font-size:18px}
		.taskbar {font-size:18px}
	}
	/* Baseline Tablet portrait */
	@media (min-width: 768px)
	{
		.divBg {background-color:#491000; width:650px; margin:auto; padding:10px;}
		.h1 {font-size:22px}
		.taskbar {font-size:22px}
	}
	/* Baseline Tablet landscape */
	@media (min-width: 1024px)
	{
		.divBg {background-color:#491000; width:900px; margin:auto; padding:15px;}
		.h1 {font-size:30px}
		.taskbar {font-size:30px}
	}
	/* Baseline Desktop */
	@media (min-width: 1200px)
	{
		.divBg {background-color:#491000; width:1000px; margin:auto; padding:20px;}
		.h1 {font-size:40px}
		.taskbar {font-size:40px}
	}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Hind', sans-serif;color:#DFD9AB;
}

/* Float two columns side by side */
.column {
  float:left;
  width: 50%;
  padding: 0 10px;
  padding-top: 20px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 16px;
  text-align: center;
  background-color: #191312;
  font-size: 30px;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}