body {
    background-color: lightblue/*azure*/; /*Temporary. May replace*/
    font-family: 'Times New Roman', Times, serif/*Verdana, Geneva, Tahoma, sans-serif;*/;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

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

/*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;
}

main {
    flex: 0.92; /* This pushes the footer down */
}

/*Code for my images and figcaptions*/
img{
  display: block;
  margin: auto;
  border-radius: 40px;
  box-shadow: 5px 5px 5px #212121;
  
}

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

#figcaptionSmaller{
    font-size: 0.9em;
    font-weight: bold;
}

table{
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    /*border: 1px solid #000000;*/
}

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

h1 {
    text-align: center;
    font-weight: bold;
}

h2 {
    text-align: center;
    font-weight: bold;
}

h3 {
     text-align: center;
    font-weight: bold;
}

hr{
    border: none;
    border-top: 2px solid #c77518ce;
}

p {
    font-size: 18px/*1.0em*/;
    text-align: center;
}

a{
    text-decoration: none;
}

a:hover{
    color: green;
}


label{
    padding: 2px;
    line-height: 2.5em;
}

fieldset{
    text-align: left;
    padding: 5px;
    background-color: #eee;
}

section{
    max-width: 600px;
    margin: auto;
}

footer {
    position: sticky;
    text-align: center;
    flex-shrink: 0px; /* Ensures footer stays full height */
}

/*Push Social Media Share Buttons to the center.*/
#centerdiv{
    display: flex;
    justify-content: center; /* Centers horizontally */
    gap: 10px; /* Adds space between buttons */
}

/*This will decorate the footer of my webpage.*/
#footerdesign{
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 5px;
    background-color: #c77518ce;
    color: #000000;
    font-weight: bold;
    width: 98.5%;
    margin-top: 10px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
}