.padding8 {
  padding: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 70%;
  }
}
header {
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header .avatar-profile {
  padding: 32px;
  display: block;
  margin: 0 auto 16px auto;
  border-radius: 50%;
}
.profile-bio-name {
  margin-bottom: 16px;
  font-size: 24px;
}
.profile-bio-subtitle {
  font-size: 18px;
}
.profile-bio-description {
  margin-top: 16px;
  font-size: 16px;
  opacity: 0.6;
  margin-bottom: 16px;
}
body {
  background-color: #dcdde1;
  color: #353b48;
}
ul {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
ul a {
  margin-top: 8px;
  text-decoration: none;
  justify-content: space-between;
}
ul a img:hover {
  transition: all ease 0.3s;
  transform: scale(1.3);
}
.social-instagram {
  padding: 8px;
}
.social-linkedin {
  padding: 8px;
}
.social-github {
  padding: 8px;
}
.social-email {
  padding: 8px;
}
.project {
  width: 100%;
}
.project .project-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
}
.project .project-list-item {
  width: 100%;
  max-width: 800px;
}
.project .project-list-item a {
  text-decoration: none;
  background-color: #2f3640;
  display: block;
  text-align: center;
  color: #dcdde1;
  font-weight: bold;
  padding: 24px 16px;
  margin-bottom: 16px;
  border-radius: 32px;
  width: 100%;
  border: 2px solid #2f3640;
  transition: all ease 0.5s;
}
.project .project-list-item a:hover {
  color: #2f3640;
  background-color: transparent;
}
