.marginBottom8 {
  margin-bottom: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  background-color: #353b48;
  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 (max-width: 767px) {
  .container {
    max-width: 70%;
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 80%;
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  .container {
    margin-top: 40px;
  }
}
header {
  padding-bottom: 24px;
}
header .profile-avatar {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  width: 20%;
  height: auto;
}
.profile-bio {
  text-align: center;
}
.profile-bio-name {
  font-size: 16px;
  margin-bottom: 8px;
}
.profile-bio-job {
  font-size: 14px;
  margin-bottom: 8px;
}
.profile-bio-description {
  font-size: 14px;
  opacity: 0.7;
}
.social-links {
  display: flex;
  justify-content: space-between;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
.social-links img {
  transition: all ease 0.3s;
}
.social-links img:hover {
  transform: scale(1.5);
}
.projects-list {
  margin-top: 32px;
}
.projects-list-item a {
  text-decoration: none;
  background-color: #7f8fa6;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #f5f6fa;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #7f8fa6;
  transition: all ease 0.5s;
}
.projects-list-item a:hover {
  color: #7f8fa6;
  background-color: transparent;
}
footer {
  text-align: center;
  font-size: 14px;
  margin-bottom: 14px;
  margin-top: 14px;
}
