/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, div, ul, li { padding: 0; margin: 0; }

body {
  background-color: rgb(40,3,3);
  color: rgb(244,244,247);
  font-family: Arial, sans-serif;
}

#wrapper {
 border: 4px #280303 solid;
 margin: 0 auto;
 max-width: 800px;
}

#header {
  
}

h1 {
 text-align: center;
 font-family: Arial, sans-serif;
 font-size: 3.0em;
 padding: 1.0em;
 color: #f4f4f7;
}

#nav {
 border-top: 4px #f4f4f7 solid;
 border-bottom: 4px #f4f4f7 solid;
 text-align: center;
}

#nav ul li {
 display: inline-block;
 font-size: 1.4em;
 width: 25%;
}

#nav ul li a {
  display: block;
  background-color: #280303;
  padding: 0.3em 0;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #f4f4f7;
  text-transform: uppercase;
}

#nav ul li a:hover {background-color: #333333;}

#main {
 min-height: 400px;
 overflow: auto;
}

#myButton {
  display: block;
  text-align: Center;
  padding: 0.3em 0;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #f4f4f7;
  border: 4px #f4f4f7 solid;
}

#myRandomDiv {
  text-align: center;
}


.float-left {
 float: left;
 width: 240px;
 margin: 2.0em;
 border: 2px black solid;
}

.float-right {
 float: right;
 width: 240px;
 margin: 2.0em;
 border: 2px black solid;
}

h2 {
  margin: 32 px;
  padding: 0.5em;
  font-size: 1.3em;
  background-color: #280303;
  color: #f4f4f7;
  clear: both;
}

p {margin: 2.0em;}

.img-box {
 display:inline-block;
 height: 150px;
 width: 150px;
 margin: 1.3em;
}

.img-box img {
 width: 100%;
 border: 2px solid black;
 opacity: 0.8;
}

.img-box img:hover { opacity: 1.0;}

.img-box p {
 text-align: center;
 margin: 0;
 height: 2.0em;
}

  ol {
  column-count: 2;
  column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  ol {
    column-count: 2;
    column-gap: 2rem;
    list-style-position: inside;
  }
}

ol {
 font-family: Arial, sans-serif;
 font-size: 2.0em;
 padding: 1em;
 color: #d6c9c9;
 margin-bottom: 10px;
 border:2px solid;
} 

ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}
ol li {
  counter-increment: my-awesome-counter;
}
ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: white;
}









