/* 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." */

 /* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #aa2222;
  background: linear-gradient(#7f0000,#8B0000,#8B0000, #560000);
  font-family: Serif;
  width: 100%;
  box-shadow: 0em 0em 0.2em black;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 1.25rem;
  color: white;
  text-align: center;
  padding: 3px 10px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 1.25rem;
  border: none;
  outline: none;
  color: white;
  padding: 3px 10px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background: linear-gradient(#bbb, #ddd);
  color: black;
  box-shadow: inset 0em 0em 0.2em black
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  font-family: sans-serif;
  position: absolute;
  width: 119px;
  box-shadow: 0em 0em 0.2em black;
  z-index: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  font-size: 1.0rem;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #eee;
  box-shadow: inset 0em 0em 0.2em black
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  background: linear-gradient(#ddd, #bbb)
} 


body {
  width:100%;
  margin: 0;
  background-image: url("https://interstitia.neocities.org/utility/commonheader.jpg");
}


h1 {
  font-family: Serif;
  font-size: 2rem;
  margin: 0 0;
  padding: 0.5rem;
}
h2 {
  font-family: Serif;
  font-size: 1.675rem;
  margin: 0 0;
  padding: 0.5rem;
  line-height: 100%;
}
h3 {
  font-family: Serif;
  font-size: 1.25rem;
  margin: 0 0;
  padding: 0.5rem;
  line-height: 150%;
}
p {
  font-family: Sans-Serif;
  font-size: 1rem;
  line-height: 150%;
  padding: 0.5rem;
  margin-top: 0;
}

/*link styling */
a {
  text-decoration: none;
}

a:hover {
  text-decoration-line: underline;
}

.headerimage {
   box-shadow: none
}

article {
  width:80%;
  background-color: #eee;
  margin: 1rem 10%;
  box-shadow: 0 0 0.2em black;
}

/*nervous text: make sure you have: 
<script  src="https://interstitia.neocities.org/wiggy/script.js"></script>
on every page with nervous text, or this will not work!*/
.nervous-text:hover a{
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
}
/*end nervous text*/