/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
html, body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  font-family: lato;
  background: #dfdfdf; }

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

* {
  box-sizing: border-box; }

#site_container {
  margin: 0 auto;
  padding: 20px;
  background: #dfdfdf; }

#site_container, #header, #footer {
  width: 100vw;
  max-width: 1200px; }

#header_container {
  width: 100vw;
  background: linear-gradient(to bottom, #aaa, #aaa0); }

#header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px;
  background: #aaa;
  border-radius: 2px;
  margin: -20px;
  margin-bottom: 0px;
  margin: auto;
  box-shadow: 0 0 10px #777; }

#name {
  display: block;
  margin: 0px; }

#role {
  font-size: 20px; }
  #role span {
    display: block; }

#contact_container {
  width: 100vw;
  display: block;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px; }

#contact {
  background: white;
  padding: 10px 20px; }

#menu {
  list-style: none;
  padding: 10px;
  margin: 0px;
  margin-left: 20px;
  text-align: right;
  background: #093258;
  background: none;
  font-weight: bold;
  line-height: 1; }
  #menu li {
    margin-bottom: 10px; }
  #menu li:last-child {
    margin-bottom: 0px; }
  #menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    transition: color .2s; }
  #menu a:hover, #menu a.current {
    color: #093258; }

#bio_left_side {
  float: left;
  display: inline-block;
  width: 170px;
  max-width: 250px;
  float: left;
  margin-right: 20px;
  margin-bottom: 2px; }
  #bio_left_side img {
    width: 100%;
    margin-bottom: 40px; }
  #bio_left_side img:last-child {
    margin-bottom: 0px; }

#profile_image {
  margin-bottom: 30px;
  border: 15px solid #093258;
  border-left: none;
  border-right: none;
  border-radius: 110px;
  box-shadow: 0px 0px 5px #0932595c; }

#bio_right_side {
  width: 170px;
  float: right;
  margin: 0px;
  margin-left: 30px;
  margin-bottom: 2px; }
  #bio_right_side img {
    width: 100%;
    margin-bottom: 40px; }
  #bio_right_side img:last-child {
    margin-bottom: 0px; }

h1 {
  color: #093258;
  margin-top: 0px;
  margin-bottom: 30px; }

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #3280ca;
  color: #093258; }

.pub {
  background: #0054;
  padding: 20px;
  margin: 0 -20px;
  margin-bottom: 20px; }

.pub span {
  display: block;
  margin-bottom: 10px; }

#teach_table {
  width: 100%; }
  #teach_table th {
    background: #093258;
    padding: 10px;
    color: white; }
  #teach_table td {
    padding: 5px; }

#footer {
  color: white;
  background: #093258;
  display: block;
  width: 100%;
  height: 100px;
  flex: 0 0 100px;
  text-align: right;
  padding: 20px;
  margin: 50px auto;
  border-radius: 2px; }
  #footer a {
    color: #eee;
    text-decoration: none;
    font-weight: bold; }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles for mobile */ }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles for tablet */ }
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Don't forget your Retina CSS! */
  body {
    background-size: 72px 72px; } }