/* CSS Reset */
* { margin: 0; padding: 0; }

/* Basic Responsive Image */
img {
  width: 100%;
  height: auto;
}
/* Responsive Images in Columns */
.one-columns {
  width: 96%;
  display: inline-block;
}
.two-columns {
  width: 48%;
  display: inline-block;
}
.three-columns {
  width: 32%;
  display: inline-block;
}

/* Responsive Images with Conditional Breakpoints  */

.breakpoint { /* One column for smartphones */
  max-width: 100%;
  display: inline-block;
}
@media (min-width: 420px) { /* Two columns for tablets */
  .breakpoint {
    max-width: 48%;
  }
}
@media (min-width: 760px) { /* Four columns for large devices */
  .breakpoint {
    max-width: 24%;
  }
}
/* Full-width Responsive Image */
.full {
  width: 100%;
}

/* Demo Page Styles: Basic */
body {
  font: normal 400 18px/25px sans-serif;
  color: #484848;
  background: #FDF8E7;
}
/* Demo Page Styles: Typography */
h1, h2, h3 {
  font-weight: 700;
}
h2, h3 {
  margin: 20px auto 20px auto;
} 
h1 {
  margin: 10px auto 50px auto;
  font-size: 38px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 2px;
}
h2 {
  font-size: 28px;
  line-height: 34px;
}
h3 {
  font-size: 22px;
  line-height: 26px;
}
h4 {
	margin-left: 20px;
	padding-top: 10px;
	text-align: left;
	color: #800000;
	}
	
h7 {
    margin-left: 16px;
	font-size: 20px;
	color: #800000;
	font-weight: bold;
	}
	
	
p, .button {
  margin: 5px auto 20px auto;
}
a {
  color: #3185fc;
  text-decoration: none;
  font-weight: 700;
}
a:hover {
  color: #1978fc;
}
/* Demo Page Styles: Layout */
.maincontainer {
  position: relative;
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  background: #FDF8E7;
}
.bottomcontainer {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #FDF8E7;
}

header {
  position: relative;
  width: 100%;
  height: 62px;
  background: #bdac8e;
  color: #800000;
  z-index: 100;
}
header .maincontainer {
  padding-top: 10px;
  padding-bottom: 25px;
}
section {
  margin: 20px auto;
}
/* Demo Page Styles: Special classes */
.button {
  display: block;
  margin: 0 auto;
  padding: 5px;
  width: 96%;
  max-width: 130px;
  text-align: center;
  background: #800000;
  color: #FAF8E7;
  text-decoration: none;
  transition: background-color 0.1s ease-in, color 0.2s ease-in;
}
.button:hover {
  background: #FAF8E7;
  color: #800000;
  transition: background-color 0.1s ease-out, color 0.2s ease-out;
}
.instructions {
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #FEFCF0;
  color: #800000;
  font-weight: 700;
}
#credits {
  background-color: #800000;
  color: #FDF8E7;
  line-height: 32px;
  margin: 0 auto;
}
#credits2 {
  background-color: #e0d1b8;
  line-height: 36px;
  margin: 0 auto;
}
/* Demo Page Styles: Media Queries */
@media (max-width: 400px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 28px;
    line-height: 34px;
  }
  h2 {
    font-size: 22px;
    line-height: 26px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

#mybtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #800000;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}
#mybtn:hover {
  background-color: #555;
}

