html {
  height: 100%;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #026697;
  padding: 10px;
  margin: 0;
  z-index: 1;
} 

nav {
  display: inline-block;
  margin-left: 1.5em;
}

h1 {
  font-family: "Trebuchet MS", sans-serif;
  color: darkblue;
  text-align: center;
  text-shadow: 2px 2px #2674FF;
  position: relative;
}
h2 {
  font-family: "Trebuchet MS", sans-serif;
  color: silver;
  text-shadow: 1px 1px black;
  margin-right: 1.5em;
}
.h2InHeader {
  display: inline-block; 
  margin: 0;
}

body {
  background-color: #1377a8;
}

p {
  color: white;
  font-family: "Verdana", sans-serif;
  text-indent: 2em;
}
li p {
  text-indent: 0;
}

.dropdown {
  overflow: hidden;
  display: inline;
}

.dropdown .dropbtn {
  font-size: 14px;
  outline: none;
  color: white;
  background-color: #7393C4;
  font-family: "Verdana", sans-serif;
  text-decoration: none;
  margin: 0;
  padding-right: 10px;
  padding-left: 10px;
  width: fit-content;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #7393B3;
  width: fit-content;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  text-decoration: none;
  font-family: "Verdana", sans-serif;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #517191;
}

.dropdown:hover .dropdown-content {
  display: block;
}

aside p {
  color: black;
  border: 2px dashed black;
  margin: auto;
  width: fit-content;
  padding: 5px 5px 5px 5px;
  margin-bottom: 10px;
  max-length: 100px;
  background-color: #7393B3;
}

.page {
  position: relative;
  font-family: "Verdana", sans-serif;
  background-color: #7393B3;
  border: 3px dashed silver;
  color: blue;
  padding: 10px 15px 10px 15px;
  margin: 4px;
  text-align: center;
  display: block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease-out 150ms, color 0.2s ease-out 150ms, border 0.2s ease-out 10ms;
  border-radius: 30px;
}
#previous {
  left: auto;
  bottom: 2em;
  display: inline;
}
#next {
  left: 60%;
  bottom: 2em;
  display: inline;
}
.page:hover {
  color: #7393B3;
  background-color: darkblue;
  border: 3px dashed #888888;
}

.arrow {
  border: solid blue;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transition: border 0.2s ease-out 150ms;
}
.page:hover .arrow{
  border: solid #7393B3;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

ol {
  color: white;
  font-family: "Verdana", sans-serif;
}

img {
  position: relative;
  border: 3px solid silver;
  display: inline;
  background-color: white;
}

article {
  width: 70%;
  margin-left: 3em;
}

cite {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

figure {
  margin: 0;
  border: 3px solid #888888;
  background-color: #026697;
  padding: 10px;
  width: fit-content;
}
figcaption {
  color: lightgreen;
  font-size: 14px;
  opacity: 0.7;
}

ul {
  font-family: "Verdana", sans-serif;
  color: white;
  list-style-type: square;
}
ul li a {
  font-family: "Verdana", sans-serif;
  color: #22DDDD;
}
ul li a:hover {
  font-family: "Verdana", sans-serif;
  color: #D0D8FF;
}
cite a {
  color: #22DDDD;
}
cite a:hover {
  color: #D0D8FF;
}

#replitBadge {
  position: fixed;
  cursor: pointer;
  bottom: 16px;
  right: 16px;
  border: none;
  background-color: transparent;
  padding: 0;
  z-index: 1000;
}
