/* Color scheme for now: */
    /* Puce: #C08497 */
    /* Snow: #FCF7F8 */
    /* French Gray: #CED3DC */
    /* Light Sky Blue: #90C2E7 */
    /* Air Force Blue: #4E8098 */

/* Headings */
.header{
  text-align: center;
  font-family: "Times New Roman", Times, serif;      
  font-size: 40px;
  color: #90C2E7; 
  padding: 2%;
  margin-left: auto;
  margin-right: auto;
  }

.subheading{
  text-align: center;
  font-family: "Times New Roman", Times, serif;  
  font-size: 28px;
  color: #C08497; 
  padding: 2%;
  margin-left: auto;
  margin-right: auto;
}

.subsubheading{
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  color: #4E8098; 
}

.subsubsubheading{
  font-family: "Times New Roman", Times, serif;
  font-size: 19px;
  color: #90C2E7; 
}


/* Body */
body{
  margin: 0;
  padding: 0;
  background-color: #FCF7F8;
  font-family: "Times New Roman", Times, serif;    
  font-size:18px;
  display: flex;
  flex-direction: column;
}

.bodytxt{
  margin: 30px 30px 30px 30px;
  font-family: "Times New Roman", Times, serif;  
  font-size:18px;
}

.citation{
  font-family: "Times New Roman", Times, serif;  
  font-size:12px;
  color: rgb(0, 0, 0, 0.3);
}

.reference{
  margin-left:   .5in;
  margin-right: .5in;
  text-indent:  -.5in;
  margin-top: 1em;
  margin-bottom: 1em;
  word-wrap: break-word;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.applet{
  display: flex;
  justify-content: center;
  align-items: center;
}

.liltitle{
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  color: #90C2E7;
  padding-top: 18px;
  max-width: 100%;
  height: auto;
  width: auto\9;
}

.quote{
  text-align: center;
  color: #90C2E7;
}

.centeredtext{
  text-align: center;
}

.marginpls{
  margin: 30px 30px 30px 30px;
  padding-bottom: 14%;
  width: 100%;
}

.container {
  display: inline-block;
  /*flex-direction: row;*/
  justify-content: center;
  /*align-items: center;*/
  text-align: center;
  margin-left: auto;
  margin-right: auto;
 }

.defnlist{
  list-style-type: none;
  display: inline-block; 
  
  line-height: 2;
}

/* Footer */

/* This one in particular is so I can have a "sticky footer" that sticks to the bottom of the page and is pushed down with more context/area change */
.content {
  flex: 1 0 auto;
}

/* This makes sure on mobile devices the footer goes all the way to the bottom of the screen */
html, body {
  height: 100%;
}

footer{
display: block;
background: #4E8098;
max-width: 100%;
padding: 20px;
font-size: 17px;
color: #CED3DC;
flex-shrink: 0;
}

.footertxt{
color: #CED3DC;
font-size: 13px;
}

.pallign{
  text-align: center;
  color: #CED3DC;
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
}


/* Navbar container */
.navbar {
  background-color: #4E8098;
  display:flex;
  justify-content:center;
}
 
.navbar a {
  font-size: 18px;
  color: #FCF7F8;
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
  width: 120px;
}

.dropdown .dropbtn {
  font-size: 18px;  
  width: 120px;
  border: none;
  outline: none;
  color: #FCF7F8;
  padding: 14px 25px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #90C2E7;
  width: 120px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #4E8098;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #FCF7F8;
  padding: 12px 25px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 120px;
}

.dropdown-content a:hover {
  background-color: #90C2E7;
  width: 120px;
}

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


/* Image Stuffs */
.row {
  display: flex;
}

.column {
  flex: 50%;
  padding: 5px;
}

.centered{
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgborder{
  border: 3px solid #C08497;
}


/* Button Links */
a.ex1:link, a.ex1:visited {
  background-color: #4E8098;
  color: #FCF7F8;
  border: 2px solid #4E8098;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a.ex1:hover, a.ex1:active {
  background-color: #4E8098;
  opacity: 0.9;
}


/* Colored Box sections */
.boxsection{
  text-align: center;
  background-color: rgb(144, 194, 231, 0.5);
  padding: .7%;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.biggerboxsection{
  text-align: center;
  background-color: rgb(144, 194, 231, 0.5);
  padding: .7%;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.boxsectionleft{
  text-align: left;
  background-color: rgb(144, 194, 231, 0.5);
  padding: .7%;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
