/* Reset box-sizing */
* {
    box-sizing: border-box;
}

/* Body */
body {
    width: 1000px;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('images/white.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #009;
}

/* Header */
header {
    background-image: url('images/headercuh.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
}

/* Navigation */
nav {
    text-align: center;
    background-color: #CCF;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    padding: 0 14px;
}

nav a {
    text-decoration: none;
    color: #036;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    color: #fff;
    background-color: #036;
}

nav a.selected {
    color: #fff;
    background-color: gray;
    font-weight: bold;
    border: 2px solid #036;
}

/* Main content */
main {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

#maincontent {
    background-color: rgb(255, 0, 0);
    color: #009;
    padding: 15px;
}

/* Headings */
h1 {
    text-align: center;
    color: red;
}

h2 {
    color: #036;
    font-family: Tahoma, Geneva, sans-serif;
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.5;
}

.important {
    color: #C00;
    font-weight: bold;
}

.larger {
    font-size: larger;
}

.red-text {
    color: red;
}

/* Abbreviation style */
abbr {
    border-bottom: 1px dotted #000;
    cursor: help;
    color: #036;
    font-weight: bold;
}

abbr:hover {
    color: red;
    background-color: #fff3b0;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

/* Footer */
footer {
    color: #FFF;
    background-color: #369;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

#footerSection {
    background-color: #369;
    color: #FFF;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

/* Scroll to top arrow */
#toTop {
    border: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Resume layout */
aside {
    width: 25%;
    float: left;
    text-align: right;
    padding: 14px;
}

section {
    width: 75%;
    float: left;
    padding: 14px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Transcript Page Styles */


.highlight {
    color: purple;
    font-weight: bold;
    font-size: 1.3em;
}


ul.custom-bullet {
    list-style: square;
    padding-left: 40px; 
    margin-bottom: 20px; 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}


ul.custom-image {
    list-style-image: url('images/point.gif');
    padding-left: 40px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}


ol.references {
    list-style-type: lower-roman;
    padding-left: 40px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}


ul.custom-bullet li,
ul.custom-image li,
ol.references li {
    margin-bottom: 8px;
}

/* Headings in transcript page */
h1, h2, h3 {
    font-family: Tahoma, Geneva, sans-serif;
    color: #036; 
}

h1 {
    text-align: center;
    color: red; 
    margin-bottom: 20px;
}

h2 {
    margin-top: 25px;
    margin-bottom: 10px;
}
