* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  font-family: 'Roboto', sans-serif;
}
.marginBottom8 {
  margin-bottom: 8px;
}
body {
  background-color: #130f40;
  color: #f5f6fa;
}
li {
  list-style: none;
}
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  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%;
  }
}
.container header {
  padding-top: 200px;
  padding-bottom: 24px;
}
.container header .profile-avatar {
  display: block;
  border-radius: 50%;
  margin: 0 auto 24px;
  width: 25%;
  aspect-ratio: 1 / 1;
}
.profile-bio {
  text-align: center;
}
.profile-bio-name {
  font-size: 28px;
  margin-bottom: 8px;
}
.profile-bio-subtitle {
  font-size: 14px;
  margin-bottom: 8px;
}
.profile-bio-description {
  font-size: 14px;
  opacity: 0.7;
  text-align: justify;
}
.social-links {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
.social-links li img:hover {
  transform: scale(1.3);
}
.projects-list {
  margin-top: 32px;
}
.projects-list-item a {
  text-decoration: none;
  background-color: #0097e6;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #f5f6fa;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #0097e6;
  transition: all ease 0.5s;
}
.projects-list-item a:hover {
  color: #0097e6;
  background-color: transparent;
}
.rodape h2 {
  text-align: center;
}
