* {
  padding: 0;
  margin: 0;

}

body {
  background-color: hsl(0, 0%, 8%);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.box {
  background-color: hsl(0, 0%, 12%);
  width: 300px;
  height: 450px;
  padding: 30px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

img {
  width: 80px;
  border-radius: 50%;
}

.name {
  font-weight: 600;
  color: white;
  margin: 20px 0 7px 0;
  font-size: 25px;
}

.location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  font-size: 13px;
}

.description {
  font-weight: 400;
  font-size: 12px;
  color: white;
  margin: 20px 0 10px 0;
}

.links {
  gap: 3px;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  font-style: normal;
}

a {
  font-weight: 600;
  color: white;
  text-decoration: none;
  background-color: hsl(0, 0%, 20%);
  margin: 7px 0;
  padding: 10px;
  width: 230px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a:hover {
  background-color: hsl(75, 94%, 57%);

  color: black;
}