body {
  box-sizing: border-box;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.first {
  border: 2px solid black;
  width: 340px;
  border-radius: 14px;
  background-color: hsl(0, 0%, 12%);
  padding: 20px;
}
.sec {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec img {
  object-fit: inherit;
  position: absolute 50% 50% -50% -50%;
  height: 10vh;
  border: 7px;
  border-radius: 70%;
  width: 70px;
}
.third {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.name {
  display: flex;
  align-items: center;
  justify-content: center;
}
.name {
  color: hsl(0, 0%, 100%);
  width: fit-content;
  font-size: 14px;
}
.palce {
  color: hsl(75, 94%, 57%);
  font-size: 16px;
  width: fit-content;
}
.info {
  color: hsl(0, 0%, 100%);
  font-size: 16px;
  width: fit-content;
  margin: 5px;
}
.last {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.linkk {
  list-style: none;
  background-color: hsl(0, 0%, 20%);
  padding: 8px 20px;
  margin-bottom: 10px;
  width: 180px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  
  
}
.linkk:hover{
    background-color: hsl(75, 94%, 57%);
    cursor: pointer;
    color: black;
}
