/*Basic CSS alignment and color for webpage.*/
body{
    background-color: tan;
}

h1{
    text-align: center;
}

nav{
    text-align: center;
}
/*Get rid of underline in links*/
nav a{
    text-decoration: none;
    font-family: Roboto;
    font-weight: bold;
    font-size: large;
}

h2{
    text-align: center;
}

h3{
    text-align: center;
}

h4{
    text-align: center;
}

p{
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

img{
  display: block;
  margin: auto;
  border-radius: 40px;
  box-shadow: 5px 5px 5px #212121;
  
}

figcaption{
    text-align: center;
    font-style: italic;
}

/*Code to format table*/
table{
    margin: auto;
    text-align: center;
    width: auto;
    height: auto;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    box-shadow: 5px 5px 5px #212121;
    border-spacing: 0;
}

/*Table header color*/
th{
    background-color: #4d5b69;
}

/*Adjust width of th and td*/
th, td{
    width: auto;
    padding-right: 2%;
}

/*Zebra Stripes*/
tr:nth-of-type(even) { 
    background-color: #6D8196; 
}
/*Table Caption*/
caption { 
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    padding-bottom: 0.5em; 
}

/*Bottom caption*/
#captionBottom {
  caption-side: bottom;
  font-weight: none;
  font-size: small;
  font-style: italic;
  padding: 10px; 
}

footer{
    position: absolute;
}

/*Code to make the links into clickable buttons*/
.button{
    display: inline-block;
    padding: 10px;
    background-color: #000000;
    color: #FFFFFF;
    font-weight: bold;
    width: 100%;
}

.pipebold{
    font-weight: bolder;
    font-size: 1.25em;
}

/*Class to make dropdown navigation links*/
.dropdown {
  position: absolute; /*Wanted relative, but it caused problems*/
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside dropdown content */
.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: #f1f1f1
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/*This will decorate the footer of my webpage.*/
#footerdesign{
    display: inline-block;
    padding: 10px;
    background-color: #000000;
    color: #FFFFFF;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}