* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  text-align: center;
}

main {
  padding-bottom: 80px;
  margin: 0 auto;
}

main p, main a {
  color: #3f3f3f;
}

header {
  margin: 0 auto;
}

.menuitem {
  display: inline-block;
  color: #3f3f3f;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
}

.menuitem:hover {
  background-color: lightgray;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
  }
  main {
    width: 91.6%;
  }
  .menuitem {
    width: 100%;
  }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    width: 91.6%;
  }
  main {
    width: 91.6%;
  }
  .menuitem {
    width: 19%;
  }
}

/* Desktop */
@media only screen and (min-width: 1024px) {
  header {
    width: 66.6%;
  }
  main {
    width: 66.6%;
  }
  .menuitem {
    width: 19%;
  }
}

img {
  width: 200px;
  border-radius: 5%;
}

ol {
  color: #3f3f3f;
}

ol li {
  margin: 10px 0;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: lightgray;
  padding: 30px 0px 0px 0px;
}

#about p {
  line-height: 30px;
  text-align: justify;
}

#students p {
  line-height: 30px;
}

#publications {
  text-align: left;
}

#research {
  text-align: left;
  line-height: 30px;
  color: #3f3f3f;
}

#research p {
  text-align: justify;
  line-height: 30px;
}

table.subjects {
  width: 100%;
  border-top: 1px solid #3f3f3f;
  border-bottom: 1px solid #3f3f3f;
  text-align: left;
  margin-bottom: 10px;
}

table.subjects a {
  color: black;
}

table.subjects tr:nth-child(even) {
  background-color: lightgray;
}

.container {
  min-height: 100%;
  position: relative;
}

.paper {
  font-style: italic;
}

a.lang {
  color: black;
}

.live {
  vertical-align: super;
  font-size: smaller;
  background-color: red;
  color: white;
  padding: 0 1px;
}

.record {
  height: 12px;
  width: 12px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}

.survey {
  color: red;
  border: 1px solid black;
  padding: 10px;
}
/*# sourceMappingURL=style.css.map */