.marginBotton8 {
  margin-bottom: 8px;
}
.fontSize14 {
  font-size: 14px;
}
.centralizeImg {
  width: 100%;
  margin: 0 auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  background-color: #273c75;
  color: #f1f2f6;
}
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 {
  margin-top: 20px;
}
header .profile-avatar {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  width: 20vw;
  max-width: 256px;
  min-width: 96px;
}
nav {
  margin-top: 10px;
}
.profile-bio {
  text-align: center;
}
.profile-bio-name {
  font-size: 16px;
  margin-bottom: 8px;
}
.profile-bio-subtitle {
  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 li img {
  transition: all ease 0.3s;
}
.social-links li img:hover {
  transform: scale(1.3);
}
.projects-list-item a {
  text-decoration: none;
  background-color: #00a8ff;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  text-align: center;
  color: #f1f2f6;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #00a8ff;
  transition: all ease 0.5s;
}
.projects-list-item a:hover {
  color: #00a8ff;
  background-color: transparent;
}
