.marginBottom8 {
  margin-bottom: 8px;
}
.fontSize14 {
  font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  background-image: linear-gradient(to right, #580d8a, #000000);
  color: #ffffff;
}
li {
  list-style: none;
}
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width:768px) and(max-width:1023px) {
  .container {
    max-width: 80%;
  }
}
@media (max-width:767px) {
  .container {
    max-width: 70%;
  }
}
header {
  padding-bottom: 24px;
  padding-top: 100px;
}
header .perfil {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
}
.bio-perfil {
  text-align: center;
}
.bio-perfil .perfil-titulo {
  font-size: 16px;
  margin-bottom: 8px;
}
.bio-perfil .perfil-sub-titulo {
  font-size: 14px;
  margin-bottom: 8px;
}
.bio-perfil .perfil-descriçao {
  font-size: 14px;
  opacity: 0.9;
}
.links {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
.links li {
  list-style: none;
}
.links li img {
  transition: all ease 0.7s;
}
.links li img:hover {
  transform: scale(1.4);
}
.lista-de-projetos .itens-da-lista {
  margin-top: 32px;
}
.lista-de-projetos .itens-da-lista a {
  color: #000000;
  text-decoration: none;
  background-color: #ffffff;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #000000;
  transition: all ease 0.8s;
}
.lista-de-projetos .itens-da-lista a:hover {
  color: #000000;
  background-color: #b1a8a8;
}
