body {
  width: 100%;
  margin: 0;
  line-height: 24px;
}

body, p, h1, h2, a, li, button {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

p {
  text-align: center;
  color: #333;
}

h1 {
  font-size: 40px;
  color: white;
  margin-top: 45vh;
}

h2 {
  text-align: center;
  font-size: 32px;
}

a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

section {
  position: relative;
  float: left;
  width: 80%;
}

ul {
  list-style: none;
}

#menu {
  width: 100%;
  height: 4em;
  background-color: white;
  position: fixed;
  margin: 0;
  top: 0;
  z-index: 100;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
}

#menu-ul {
  display: inline;
  float: right;
  margin-right: 2vw;
  margin-top: 1.2em;
}

#menu-ul li {
  display: inline;
  padding: 0.7em;
  cursor: pointer;
}

#menu-logo {
  float: left;
  margin-left: 2vw;
  margin-top: 0.4em;
}

#header-h1 {
  font-weight: 600;
}

@media only screen and (max-width: 1250px) {
  #menu-logo {
    width: 30%;
    margin-top: 0.9em;
  }
}

@media only screen and (max-width: 1000px) {
  #menu-logo {
    display: none;
  }
}

#header {
  height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
  align-items: center;
  background: rgb(61,200,174);
  background: linear-gradient(124deg, rgba(61,200,174,1) 0%, rgba(91,149,162,1) 100%);
}

button {
  border-color: white;
  color: white;
  background-color: transparent;
  font-size: 22px;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: 0.2s linear;
  margin-top: 2em;
}

button:hover {
  background-color: white;
  color: #5b95a2;
}

.white-bg {
  background-color: white;
  padding: 10%;
  margin: 0;
}

.grey-bg {
  background-color: #f9f9f9;
  padding: 10%;
  margin: 0;
}

#introduction {
  background-color: #5b95a2;
  margin: 0;
  color: white;
  width: 80%;
  padding: 5% 10%;
  clip-path: polygon(
    0 0, /* left top */
    100% 0, /* right top */
    100% 100%, /* right bottom */
    0 90% /* left bottom */
  );
}

#introduction p {
  color: white;
}

#figure-p, #figure-img {
  float: left;
  width: 45%;
  margin-top: 3em;
}

#figure-p {
  padding-right: 10%;
  text-align: left;
}

.half-section-left {
  width: 30%;
  float: left;
  position: relative;
  margin-left: 20%;
}

.half-section-left h2 {
  text-align: left;
  margin-left: 2em;
}

.half-section-right {
  width: 40%;
  float: right;
  position: relative;
}

.half-section-right ul li, .half-section-left ul li {
  padding: 0.5em;
}

.half-section-right h2 {
  text-align: left;
  margin-left: 2em;
}

#bjornsson-link {
  color: #5b95a2;
}

#publications {
  background: rgb(61,200,174);
  background: linear-gradient(124deg, rgba(61,200,174,1) 0%, rgba(91,149,162,1) 100%);
  clip-path: polygon(
    0 0, /* left top */
    100% 0, /* right top */
    100% 100%, /* right bottom */
    0 90% /* left bottom */
  );
  margin-bottom: -3em;
  z-index: 100;
}

#publications li, #publications h2 {
  color: white;
}

#publications-ul li {
  display: inline;
  margin: 1em;
}

#publications-ul {
  margin-top: 3em;
}

footer {
  position: relative;
  float: left;
  background-color: #333;
  width: 100%;
  padding-top: 3em;
}

footer p {
  color: white;
  margin-bottom: 6em;
}

#footer-logo {
  width: 50%;
    margin-left: 25%;
    margin-top: 6em;
}
/*
#team {
  background-image: url("teambg.jpg");
  height: 200px;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
} */

.teamname {
  width: 33%;
  height: auto;
  float: left;
  text-align: center;
  margin-top: 3em;
}
