.marginBotton8 {
  margin-bottom: 8px;
}
.fonte14 {
  font-size: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Titillium Web', sans serif;
}
body {
  background-color: #182C61;
  color: #CAD3C8;
}
li {
  list-style: none;
}
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .container {
    max-width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 80%;
  }
}
header {
  padding-bottom: 24px;
}
header .profile-avatar {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  header {
    margin-top: 24px;
  }
}
.profile-bio {
  text-align: center;
}
.profile-bio-name {
  font-size: 20px;
  margin-bottom: 8px;
}
.profile-bio-subtitle {
  font-size: 14px;
  margin-bottom: 8px;
}
.profile-bio-description {
  font-size: 14px;
  opacity: 0.8;
}
.social-links {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  width: 1005;
  margin: 0 auto;
}
.social-links li img {
  transition: all ease 0.3s;
}
.social-links li img:hover {
  transform: scale(1.3);
}
.project-list {
  margin-top: 32px;
}
.project-list-item a {
  text-decoration: none;
  background-color: #6D214F;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #CAD3C8;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #6D214F;
  transition: all ease 0.5s;
}
.project-list-item a:hover {
  border: 2px solid #CAD3C8;
  background-color: transparent;
  transform: scale(1.01);
}
