.marginBottom8 {
  margin-bottom: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  background-image: url('../../src/images/error_tokage_original.png');
  /* Define a imagem de fundo */
  background-size: cover;
  /* Faz com que a imagem cubra toda a área */
  background-position: center;
  /* Centraliza a imagem no fundo */
  color: #dfe6e9;
  /* Usando a variável para a cor do texto */
  backdrop-filter: blur(7px);
}
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%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 80%;
  }
}
header {
  padding-bottom: 12px;
}
header .profile-avatar {
  display: block;
  margin: 0 auto 24px;
  border-radius: 50%;
  height: 125px;
  width: 125px;
  filter: drop-shadow(-5px 5px 4px #000000);
}
.profile-bio {
  text-align: center;
  filter: drop-shadow(-5px 5px 4px #000000);
}
.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 {
  margin-top: 32px;
  transition: all ease 0.3s;
  height: 30px;
}
.social-links li img:hover {
  transform: scale(1.1);
}
.projects-list-item a {
  text-decoration: none;
  background-color: #ff793f;
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  margin-top: 32px;
  text-align: center;
  color: #dfe6e9;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #ff793f;
  transition: all ease 0.5s;
  filter: drop-shadow(-5px 5px 4px #000000);
}
.projects-list-item a:hover {
  color: #ff793f;
  background-color: transparent;
}
