body {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
span {
  font-weight: 300;
}

p {
  line-height: 1.5rem;
}

#content {
  margin: 2rem 0;
}

#main-container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1rem;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header > .logo {
  width: 7rem;
}

#navbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#navbar > a:not(:last-child) {
  border-right: 1px solid black;
  padding-right: 0.8rem;
}

#navbar > a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
}

#navbar > .active {
  font-weight: bold;
}

.logo > img {
  width: 100%;
}

.languages-list {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
}

.languages-list > a {
  text-decoration: none;
  color: black;
}

.languages-list > .selected {
  font-weight: bold;
  text-decoration: underline;
}

.member-linkedin {
  text-decoration: none;
  color: black;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.team-position {
  margin: 0;
  color: grey;
  font-size: 0.9rem;
  font-style: italic;
}

.team-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: gray;
  font-size: 0.8rem;
}

.footer-company-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-company-info > p {
}

/* media queries */

@media screen and (max-width: 1000px) {
  .projects-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 850px) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 90%;
  }
  #header {
    flex-direction: column;
    gap: 1rem;
  }
  .projects-container {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
