/* 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." */
body {
  
  background-color: black;
  color: black;
  font-family:  'VT323',monospace;
}
body *{box-sizing: border-box;}

/* Style the header */
header{
  border-radius: 360px;
  background-color: orange;
  padding: 25px;
  text-align: center;
  font-size: 50px;
  color: black;
}

/* Create two columns/boxes that floats next to each other */
nav {
  border-radius: 50px;
  float: left;
  background: #63b85c;
  padding: 45px;
  height:auto;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

ul{list-style-image: url('images/mine/sillyface.png');
background-size:contain;
}

/* .normallist{list-style-image:none;} */

article {
  border-radius: 50px;
  float: left;
  padding: 45px;
  text-align:center;
  }

#leftarticle{
  border-radius: 50px;
  float: left;
  padding: 45px;
  text-align:left;
  }

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #008001;
  padding: 10px;
  text-align: center;
  color: white;
}
a{
  color: black;
  font-weight: bold; 
  }
/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
} 
/* Dropdown Button */
.dropbtn {
  background-color: orange;
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #f8b659;
  color: #008001;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;  /*350px*/
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #63b85c;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.j { width: 30em; text-align: justify; }
 .hide { display: none; }
 .pink { background-color: tan;  color: white; }
 b, span { cursor: pointer; }
 
 .orangesolidmid{
   border-top: 2px solid orange;
   }
 .orangesolidsmall{
   border-top: 1px solid orange;
   }
 .greensolidmid{
   border-top: 2px solid #008001;
   }
 .greensolidsmall{
   border-top: 1px solid #008001;
   }
 .leftlink{
   text-align: left;
   }