@charset "utf-8";

/* Browser Window Background */
html {
    background-color: #2c3e50; /* A deep slate blue */
}

/* Page Body Styling */
body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    margin: 25px;
}

/* Header Section */
header {
    text-align: center;
    padding: 20px;
}

/* Subheadings */
h2 {
    font-size: 1.3em;
}

/* Navigation Section */
nav {
    background-color: #34495e; /* A slightly lighter slate blue */
    padding: 15px;
    text-align: center;
}

/* Navigation Links */
nav a {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: #ecf0f1; /* Off-white for high contrast */
}

/* Navigation Hover State */
nav a:hover {
    text-decoration: underline;
    color: #f1c40f; /* Changes to a soft gold on hover */
}

/* Main Content Area */
main {
    padding-left: 20px;
    padding-right: 20px;
}

/* Image Styling */
img {
    width: 25% !important; /* Forces width to 25% of container */
    padding: 25px;
}

/* Footer Section */
body > footer {
    background-color: #34495e;
    color: rgba(236, 240, 241, 0.6); /* Semi-transparent off-white */
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* Education Page List Marker */
ul {
    list-style-type: square; /* Changes default dots to squares */
}