* {
  box-sizing:border-box;
}

body {
  background-color: #141414;
  color: white;
  display: flex;
  justify-content:center;
  height:100vh;
  align-items:center;

  padding-left: 24px;
  padding-right: 24px;
  margin: auto;
}

.card {
  width: 100%;
  max-width: 384px;
  background-color:#1F1F1F;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  gap:24px;
  padding:40px;
  border-radius:12px;
}

.image-container {
  border-radius: 50%;
}

.links {
  list-style:none;
  padding:0;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width: 100%;
  max-width:280px;
  gap:16px;

}
li {
  background-color:#333333;
  width:100%;
  line-height:150%;
  font-size:14px;
  font-weight:500;
  padding-top:12px;
  padding-bottom:12px;
  border-radius:6px;
  transition: background-color 1s ease;
}

li:hover {
  background-color: #C4F82A;
  transition: background-color 0.1s ease-in;
  cursor: pointer;
}

li:hover a {
  color: black;
  transition: color 0.1s ease-in;
}

.links a {
  text-decoration:none;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  width: 100%;
  max-width:280px;
  font-family: 'Inter';
  font-size:14px;
  line-height:150%;
  font-weight:400;
  transition: color 1s ease-out;
}




.location {
  margin:0 auto;
}

.about {
  margin:0 auto;
  padding:0px;
  margin:0px;
  gap:4px;
}

.whois {
  display:flex;
  padding:0px;
  margin:0px;
  font-size: 14px;
  line-height:150%;
  font-weight: 400;
  font-family: 'Inter';
  letter-spacing: 0px;
}

h1 {
  margin:0px;
  font-size: 24px;
  line-height:150%;
  font-weight: 700;
  font-family: 'Inter'
}

.location {
  display:flex;
  justify-content:center;
  color: #C4F82A;
  font-size: 14px;
  line-height:150%;
  font-weight: 500;
  font-family: 'Inter'
}