body {
    background-color: rgb(0, 0, 0);
    background-image: url(assets/pattern4.png);
  }
  h1#logo {
    font-family: 'Bitter', serif;
    text-transform: uppercase;
    font-size: 3em;
}

h1#logo a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

header#header-main {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 20px;
}
header nav#nav-main ol {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
  }
  header nav#nav-main ol li a {
    color:  rgb(251, 255, 0);
    background-color: rgb(124, 0, 0);
    padding: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    margin-top: 20px;
    font-size: 1.5em;
  }

  nav#nav-main ol li a:hover {
    background-color: rgba(255,255,255,0.4);
    color: red;
  }
  section#cs-hero {
    background-image: url(assets/hero-background2.png);
  }
div#wrapper {
    background-color: rgb(0, 0, 0);
    width: 800px;
    height: 150px;
    margin: 10px auto;
    padding: 20px;
  }
  * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

  /*div#hero-content {
    background-image: url(assets/skull-man2.png);
    width: 750px;
    height: 740px;
  }
  header nav#nav-main ol {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
  }
  header nav#nav-main ol li a {
    color:  rgb(251, 255, 0);
    background-color: rgb(124, 0, 0);
    padding: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    margin-top: 20px;
    /*font-size: 1.5em;
  }

  nav#nav-main ol li a:hover {
    background-color: rgba(255,255,255,0.4);
    color: red;
  }

  div#hero-content p {
    color: white;
    margin-bottom: 200px;
    font-size: 1.30em;
    font-family: 'Vollkorn', serif;
    text-align: center;
  }

  div#hero-content p a {
    font-family: Verdana, Tahoma, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    background-color: rgb(124, 0, 0);
    color:  rgb(251, 255, 0);
    padding: 10px;
    font-size: 3.8em;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    text-align: center;
    }
  div#hero-photo {
    display: flex;
    justify-content: flex-end;
  }

  div#hero-content p {
    line-height: 3.5em;
  }
  
  div#hero-content p a:hover {
    background-color: white;
    color: red;
  }*/
h2, h3, h4, h5, p, li, blockquote{
    color: white
}
main {
    /* Just an arbitrary width */
    width: 1000px;
    margin: 0 auto;
    padding: 10px;
    background-color: rgb(124, 0, 0);
}

/* Focusing on section elements that are a direct parent of the main element */
main>section {
    margin: 10px;
    /* No margin on TB but 20px on LR */
    padding: 20px;
    border: 1px solid black;
}

/* Focusing on H2 elements that are a direct parent of the section elements */
main>section h2 {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
}

/* Now for the other headings... 3-6 */
main>section h3 {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
}

main>section h4 {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
}

main>section h5 {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
}

main>section h6 {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
}

main>section h2,
main>section h3,
main>section h4,
main>section h5,
main>section h6 {
    font-weight: bold;
    padding: 10px;
}

main>section>p {
    padding: 10px 0;
    line-height: 1.25em;;
}

main a:link {
    color: yellow;
}

main a:visited {
    color: blue;
}

main a:hover {
    color: red;
}

main a:active {
    color: white;

}

/* Basic CSS for Blockquotes */
section>blockquote {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    font-size: 2em;
    font-style: italic;

}

/* Basic CSS for an Ordered List */
section>ol li{
    list-style-type: upper-alpha;
    margin-left: 24px;
    text-decoration: none;
    color: yellow;
}
section>ol li a{
  text-decoration: none;
  color: yellow;
}

/* Basic CSS for an Unordered List */
section>ul {
    list-style-type: disc;
    margin-left: 24px;
}

/* Basic CSS for a Definition List */
/* section>dl {
 
} */

section>dl>dt {
    font-weight: bold;
}

section>dl>dd {
    font-style: italic;
    margin-left: 24px;
}

/* Basic CSS for the Figure and Figcaption */
section>figure {
    background-color: white;
    padding: 20px;
    text-align: center;
}

section>figure>img {
    border: thin solid black;
    padding: 10px;
    background-color: rgb(255, 255, 255);
}

section>figure>figcaption {
    font-size: smaller;
    font-style: italic;
    color: white;
}

/* The Row of Images */
div.row-of-images {
    outline: thin solid gray;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

div.row-of-images a {
    border: thin solid blue;
    width: 200px;
    height: 150px;
}

footer nav#nav-footer ol {
    display: flex;
    justify-content: space-around;
    padding: 45px 0;
  }
  footer nav#nav-footer ol li a {
    color:  rgb(251, 255, 0);
    background-color: rgb(124, 0, 0);
    padding: 20px;
    margin-left: 10px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    margin-top: 20px;
    /*font-size: 1.5em;*/
  }
  
  footer {
    background-color: black;
    color: rgb(207,182,149);
    text-align: center;
    margin: 20px;
    padding: 5px;
  }

  footer nav#nav-footer ol li a:hover {
    background-color: white;
    color: red;
  }
  footer p {
    margin: 20px;
  }
  footer a:link {
    color: rgb(213,193,167);
  }
  footer a:visited {
    color: rgb(186,131,59);
  }
  footer a:hover {
    color: rgb(235,235,235);
  }
  footer a:active {
    color: rgb(189,203,39);
  }
  footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  footer ul li a {
    background-color: orange;
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(assets/social-media-icons-5.png);
    border-radius: 30px;
  }
  footer ul li {
    display: inline-block;
  }
  footer ul li a b {
    display: none;
  }
  footer ul li#sm-yt-icon a:link {
    background-position: 0 0;
  }
  footer ul li#sm-yt-icon a:hover {
    background-position: 0 -60px;
  }
  footer ul li#sm-yt-icon a:active {
    background-position: 0 -120px;
  }
  footer ul li#sm-in-icon a:link {
    background-position: -60px 0;
  }
  footer ul li#sm-in-icon a:hover {
    background-position: -60px -60px;
  }
  footer ul li#sm-in-icon a:active {
    background-position: -60px -120px;
  }
  footer ul li#sm-tw-icon a:link {
    background-position: -120px 0;
  }
  footer ul li#sm-tw-icon a:hover {
    background-position: -120px -60px;
  }
  footer ul li#sm-tw-icon a:active {
    background-position: -120px -120px;
  }
  footer ul li#sm-li-icon a:link {
    background-position: -180px 0;
  }
  footer ul li#sm-li-icon a:hover {
    background-position: -180px -60px;
  }
  footer ul li#sm-li-icon a:active {
    background-position: -180px -120px;
  }