@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Inter", sans-serif; 
  background-color: #141414;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  justify-content: center;
}

#infos { 
  background-color: #1E1E1E;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

#img-avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

#nome-pessoal {
  margin: 0px;
  color: white;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 24px;
}

#local {
  color: #BAEE1D;
  font-size: 16px;
  margin: 0;
}

#descricao {
  color: #ccc;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.lista-links-perfil > li {
  list-style-type: none;
  color: white;
  background-color: #333333;
  padding: 10px;
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.lista-links-perfil {
  width: 100%;
}

li > a {
  text-decoration: none;
  color: white;
}

li > a:hover {
  color: #141414;
}

@media (max-width: 480px) {
  #infos {
    max-width: 300px;
  }
}
