body {
  margin: 0;
  background: url("img/code.jpg") rgba(25, 35, 45, 1);
  background-size: 100% auto;

  color: white;
  font-family: Avenir, Arial, sans-serif;
}
h1 {
  font-weight: 300;
}
a {
  text-decoration: none;
  color: white;
}

.nav-bar {
  z-index: 1;
  position: absolute;
  width: calc(100% - 2 * 50px);
  display: flex;
  justify-content: space-between;

  padding: 20px 50px 0;
  margin-bottom: 50px;

  color: white;
}
.links {
  padding-top: 30px;
}
.links a {
  margin: 0 12px;
}
@media (max-width: 767px) {
  .nav-bar .links {
    display: none;
  }
}

.content {
  max-width: calc(752px + 2 * 40px);
  margin: auto;
  padding: 0 40px;
}

.header {
  height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-7%);
}
.header h1 {
  font-size: 50px;
  max-width: 80%;
  margin-bottom: 50px;
}

.button {
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 0.3px;
  background: white;
  color: rgb(25, 35, 45);

  box-shadow: 0 2px 5px 1px rgba(25, 35, 45, 0.4);
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.2s ease-out;
  display: inline-block;
}
.button:hover {
  transform: translate(0, -1px);
}

section {
  padding-top: 60px;
}
.team {
  margin-top: -80px;
}
.team .member {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.team .member img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 20px;
}
.team .member .title {
  font-size: 24px;
  line-height: 35px;
}
.team .member .role {
  font-size: 19px;
  font-style: italic;
  font-weight: 100;
  opacity: 0.7;
}
.tag-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 20px 0 0;
  padding: 10px 0;
}
.team .member .tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.tags .tag {
  margin: 0 8px;
  padding: 3px 7px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 14px;
}
.tag-container span {
  font-size: 12px;
  font-style: italic;
}
.team p {
  padding-top: 40px;
  width: 100%;
  text-align: justify;
}
.team p a {
  text-decoration: underline;
}

.efre h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
.efre img {
  width: 60%;
  margin: 0 calc((100% - 60%) / 2);
}
.efre p {
  padding-top: 20px;
  width: 100%;
  text-align: justify;
}

.work-with-me {
  margin-bottom: 100px;
}
.work-with-me h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}
.work-with-me h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin-top: 0;
}
.work-with-me .icons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.work-with-me .icons .icon {
  width: 30px;
  height: 30px;
  margin: 0 20px;
}
.icon-email {
  margin: 0 15px !important;
}
.icon-email img {
  padding: 5px 0;
  height: 24px;
  width: 24px;
}

footer {
  background: rgba(25, 35, 45, 1);
  width: 100%;
  padding: 20px 0 20px;
}
.footer-links {
  position: absolute;
  right: 0;
  font-size: 14px;
  margin-right: 10px;
}
.footer-links a {
  margin: 0 10px;
}
footer .copyright {
  width: 100%;
  font-size: 12px;
  text-align: center;
}

.legal h2 {
  font-weight: 500;
}
.legal h3 {
  font-weight: 500;
}
.legal a {
  text-decoration: underline;
}
