body {
  background-color: #141414;
  margin: 40px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

body p {
  font-size: 14px;
}

main {
  background-color: #1f1f1f;
  color: #fff;
  font-weight: 400;
  padding: 35px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.Nome {
  font-size: 25px;
  font-weight: 700;
  margin: 35px 0 5px 0;
}

.Localizacao {
  font-weight: 600;
  margin: 0;  
  color: #c5f82a; 
}

#Frase {
  font-weight: 400;
  margin: 30px 0 35px 0;   
}

#links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#links a{
  background-color: #333333;
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  width: 300px;
  text-align: center;
  border-radius: 6px;
  transition: background-color 0.3s;
}

#links a:hover {
  color: #000000;
  background-color: #c5f82a;
}

footer {
  position: relative;
  bottom: 0;
  padding: 20px;
  width: 100%;
  color: #fff;
  font-size: 11px; 
  text-align: center; 
}

footer a {
  text-decoration: none;
  color: hsl(228, 45%, 44%); 
}