/* 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;
}

/* Portfolio Figure Styles */
#figureContainer {
    text-align: center; /* center all images */
}

figure {
    display: inline-block;
    width: 320px; /* 3 columns on desktop */
    margin: 5px;
    text-align: center;
}

figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive layout */
@media only screen and (min-width: 720px){
    figure {
        width: 45%; /* 2 columns for tablets */
    }
}

@media only screen and (min-width: 1000px){
    figure {
        width: 320px; /* 3 columns on desktop */
    }
}








/* Newsletter Infobar */
.infobar {
    background-color: #036;       
    color: #fff;                  
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin: 15px 0;
    border-radius: 6px;           
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Newsletter Box */
.box {
    border: 2px solid blue;
    padding: 15px;
    margin-bottom: 20px;
}

/* Blockquote style for newsletter */
blockquote {
    text-align: justify;
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

blockquote:first-letter {
    font-size: 1.8em;
    font-weight: bold;
    color: #C00;
    float: left;
    margin-right: 5px;
}









/* Contact Page Styles */
table {
    width: 100%;
    border: 4px solid #003399;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: #fff;
}

th {
    background-color: #036;
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    padding: 10px;
}

td {
    border: 1px solid #003399;
    padding: 8px;
    vertical-align: middle;
}

input, select, textarea {
    width: 90%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.required {
    color: red;
    font-weight: bold;
}
