body {
    background-color: black;
    font-family: Philosopher;
    color: gold;
    margin: 10px 40px;
}

h1 {
    font-size: xx-large;
    font-weight: bold;
    font-family: IM Fell English SC, serif;
    color: gold;
}

h2 {
    font-size: x-large;
    font-weight: normal;
    font-family: IM Fell English SC, serif;
    color: gold;
}

h3 {
    font-size: large;
    font-weight: normal;
    font-family: IM Fell English SC, serif;
    font-style: italic;
    color: gold;
}

a:link {
    color: gold;
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

th, td {
    padding-right: 10px;
}
.small {
    font-variant: small-caps;
}

.page-title {
    font-size: xx-large;
    font-weight: bold;
    font-family: IM Fell English SC, serif;
    color: DeepSkyBlue;
}

/* Margins
    margin-top
    margin-right
    margin-bottom
    margin-left
 Four values: as listed above
 Three values: <top> <right and left> <bottom>
 Two values: <top and bottom> <right and left>
 One value: <all four>
 */
.inset {
    margin: 10px 80px;
}

/* Dropdown Button */
.dropbtn {
    background-color: black;
    color: black;
    padding: 2px;
    font-size: small;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: gainsboro;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 2px 10px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: DeepSkyBlue;}

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: SlateGray;}

/* Center align content */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Calendar properties */
/* Tried to incorporate calendar styles here but result was invalid link error */

/* Set the default link color and decoration for black background 
   This isn't working currently, setting color and text-decoration inline */
