/* style.css */

/* Body */
body {
    background-color: #FFA500; /orange/
    font-family: Times New Roman, serif;
    text-align: center; 
    color: #FFFFFF; /white/
}

/* Header */
header {
    background-color: navy;
    font-weight: bold;
    font-size: 20pt;
    color: #FFFFFF; /white/
}

/* H2 */
h2 {
    color: ADD8E6; /baby blue/
}

/* H3 */
h3 {
    color: #008000; /green/
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
}


.bar {
    height: 20px;
    background-color: #007bff; 
    margin-top: 5px;
}

#survey-results div {
    margin-bottom: 10px;
}

nav ul li {
    display: inline;
    margin: 0 10px; 
}

nav ul li a {
    text-decoration: none;
    color: #000000; /black/
}

nav ul li a:hover {
    color: #ADD8E6; /light blue/
}


/* Unordered List */
ul {
    list-style-type: none; 
}

ul li {
    background-image: url('marker.gif'); 
    background-repeat: no-repeat; 
    background-position: left center; 
    padding-left: 20px; 
}

body.about-page {
    background-color: #800080; /*purple */
}


body.contact-page {
    background-color: #FFC0CB; /*pink */
}

.float-right {
    float: right;
    margin-left: 10px; 
}

section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px; 
}

section h2 {
    width: 100%; 
    margin-bottom: 10px; 
}

table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid black; 
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid black; 
}

th {
    background-color: #800080; /*purple*/
}
