:root {
  font-size: 15px;
  color: #34495e;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
a {
  min-width: 60px;
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
  background: black;
  border: solid 1px black;
  border-radius: 5px;
  padding: 10px 16px;
  transition-duration: 0.3s;
}
a:hover {
  color: black;
  background: white;
}
header {
  display: flex;
  padding: 0 100px;
  line-height: 3.5;
}
header ul {
  display: flex;
  flex: 1;
  list-style-type: none;
  justify-items: center;
  font-size: 1rem;
  padding: 0 5%;
}
header ul li {
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 0 10px;
  transition-duration: 0.3s;
}
header ul li:hover {
  background: #ecf1f1;
  cursor: pointer;
}
header .logo {
  width: 70%;
  font-weight: bold;
}
.content {
  display: flex;
  padding: 5%;
}
.content .team-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  color: black;
}
.content .team-container .description {
  width: 30vw;
}
.content .team-container .description h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.content .team-container .description h3 {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.content .team-container .team-logo {
  max-width: 500px;
  max-height: 500px;
}
.content .team-container .team-logo img {
  max-width: 100%;
  max-height: 100%;
}
/*# sourceMappingURL=style.css.map */