/* Sets bg color and default font for all content in body section*/
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  margin: 0;
}

/* Sets defaults and style for heading contnet */
header {
  background-color: #080808;
  color: white;
  text-align: center;
  padding: 25px;
}

/* Sets defaults and style for section contnet */
section {
  background-color:#080808;
  width: 85%;
  color: white
  max-width: 850px;
  margin: 25px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* defaults and style for section titles */
h3 {
  color: #ffff;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
}

/* Make the video fit */
video {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Makes Audio player fit */
audio {
  display: block;
  width: 100%;
  margin-top: 10px;
}

/* Sets default and style for footer contnet */
footer {
  background-color: #1f3b5b;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Footer link color */
footer a {
  color: #24a335;
}

footer a:hover {
  color: #e70390;
}