/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Page Formatting */
.flex-container {
  display: flex;
}

div {
  padding: 0px 20px 0px 20px;
}

/* Headers */
h1 {
  color: #f9429e;
}

h3, h5 {
 color: #99054F;
}

h2, h4, h6 {
  color: #00b7eb;
}


/* Lists */
ul li { padding: 5px 0px; }


/* Paragraph Formatting */
body {
  color: black;
  font-family: Verdana;
}


/* Table Formatting */
table, tr, td, th {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 15px;
}

.topalign {
  vertical-align: text-top;
}

.quote {
  background-color: #FFFCED;
  border-width: 5px; 
  border-color: #6A93B0; 
  border-style: inset;
}

th {
  background-color: #D8F6FF;
  color: black;
}