@import "https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css";
body {
  padding: 0;
  margin: 0;
  font: 100%/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}
#container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
/* ------------------------------------------ */
/* ----------------- HEADER ----------------- */
/* ------------------------------------------ */
#headerContainer {}
#header {
  background: url(https://www.reed.edu/physics/faculty/illing/css/pix/ikeda.jpg) center 15px no-repeat;
  background-size: 60px;
  border-top: 5px solid #6b8714;
 
}
#nameplate {
  text-align: center;
  line-height: normal;
  margin: 30px 0 15px;
}
#nameplate h1 {
  padding: 0;
  margin: 0 0 15px;
  font-size: 2em;
}
#nameplate h1 a {
  text-decoration: none;
}
#nameplate h2 {
  font-family: inherit;
  font-size: 1em;
  margin: 0;
}
#nameplate p {
  margin: 0;
  font-size: .9em;
  letter-spacing: 1px;
}
#nameplate a {
  text-decoration: none;
  color: inherit;
}
/* ------------------------------------------------ */
/* ----------------- PAGE BODY ----------------- */
/* ------------------------------------------------ */
#pageBody {

}
/* --------------------------------------- */
/* ----------------- NAV ----------------- */
/* --------------------------------------- */
#siteNav {
  margin: 0 0 60px;
}
#siteNav_links h3 {
  position: absolute;
  left: -999em;
}
#siteNav_links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#siteNav_links ul li {
  margin: 0 15px;
  padding: 0;
}
#siteNav_links ul li a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  font-size: .8em;
  letter-spacing: 1px;
  font-weight: bold;
  
}
#siteNav_links ul li:nth-of-type(1n) a.active {
  background: #d7e2ff;
}
#siteNav_links ul li:nth-of-type(2n) a.active {
  background: #d9ffbc;
}
#siteNav_links ul li:nth-of-type(3n) a.active {
  background: #fff592;
}
/* ------------------------------------------- */
/* ----------------- CONTENT ----------------- */
/* ------------------------------------------- */
#mainContent {
  flex: 1;
}
h1,h2 {
  font-family: Geargia, "Times New Roman", Times, serif;
}
h1 {
  font-size: 2.2em;
  font-weight: 400;
  margin-top: 1.5em;
}
h2 {
  font-size: 1.8em;
  font-weight: 400;
  margin-top: 1.5em;
}
h3 {
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 1.5em;
}
h4 {
  font-size: 1.2em;
  margin-bottom: .5em;
  margin-top: 1.5em;
}
a, a:hover, a:visited {
  color: #54789C;
}
h1 a, h2 a, h3 a, h4 a {
  text-decoration: none;
}
.home-nameplate {
  font-family: Georgia, serif;
}
.home-nameplate h2 {
  font-size: 1.7em;
  margin: 0;
}
.home-nameplate p {
  margin: 0;
  font-style: italic;
  letter-spacing: 1px;
}
.home-nameplate a {
  color: inherit;
  text-decoration: none;
}
.person-list td {
  vertical-align: top;
}
.person-list td img {
  display: block;
  margin: 1rem auto 1rem auto;
}
.person-list td:nth-child(2) {
  padding: 1rem;
}
/* --------------------------------------------- */
/* ----------------- SECONDARY ----------------- */
/* --------------------------------------------- */

#secondaryContent {
  padding: 0 15px;
  font-size: .85em;
}
/* ---------------------------------------- */
/* ----------------- MISC ----------------- */
/* ---------------------------------------- */
#accessLinks {
  position: absolute;
  top: -999px;
  left: 0;
  width: 80%;
  z-index: 999;
}
#accessLinks a {
  position: absolute;
  top: 0;
  left: 0;
}
#accessLinks a:focus, #accessLinks a:active {
  top: 999px;
  background-color: #434343;
  color: #f0e4d4;
  padding: 2px 4px;
  border: 1px solid #000;
  margin: 5px;
  white-space: nowrap;
}
.float-right {
  float: right;
  margin: 0 0 10px 10px;
}
.float-left {
  float: left;
  margin: 0 10px 10px 0;
}
/* ------------------------------------------ */
/* ----------------- FOOTER ----------------- */
/* ------------------------------------------ */

#footer {
  border-top: 4px solid #ccc;
  font-size: .9em;
  color: #666;
  line-height: normal;
  padding: 30px 0;
  margin-top: 60px;
}
.footer-contact {
  margin-bottom: 30px;
  border-bottom: 4px solid #ccc;
  padding-bottom: 30px;
}
#footer h2 {
  margin: 0 0 15px;
  font-size: 1em;
  font-family: inherit;
  font-weight: bold;
}
.footer-copyright {
  background: rgba(255,255,255,.4) url(https://www.reed.edu/global_assets/images/logo/griffin-2016/150px.000000.100.png) 10px center no-repeat;
  background-size: 30px;
  padding: 15px 15px 15px 50px;
}
#footer p, #footer ul {
  margin: 0;
}
#footer .random-quotes li {
  display: none;
  border-left: 1px solid #ccc;
  padding: 15px;
}
/* ----------------------------------------------- */
/* ----------------- BREAKPOINTS ----------------- */
/* ----------------------------------------------- */
@media screen and (min-width: 1000px){
  #container {
    padding: 0 30px;
  }
  #pageBody {
    display: grid;
  }
  #siteNav {
    grid-column: 1/3;
  }
  #mainContent {
    margin-right: 30px;
  }
  #secondaryContent {
    max-width: 200px;
  }
  
  #mainContent > *:first-child,
  #secondaryContent > *:first-child {
    margin-top: 0;
  }
}