@import url(https://fonts.google.com/specimen/Inter);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter";
}

body {
  background-color: hsl(0, 0%, 8%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.profilecard {
  background-color: hsl(0, 0%, 12%);
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
}

.profilecard img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

h1 {
  color: hsl(0, 0%, 100%);
  font-size: 24px;
  margin-bottom: 10px;
}

h2 {
  color: hsl(75, 94%, 57%);
  font-size: 14px;
  margin-bottom: 16px;
}

p {
  color: #a3a3a3;
  margin-bottom: 24px;
  font-size: 14px;
}

.links a {
  display: flex;
  justify-content: center;
}

.button {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  padding: 12px 0;
  background-color: hsl(0, 0%, 20%);
  margin-top: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.button:hover {
  color: #000;
  background-color: hsl(75, 94%, 57%);
  transition-duration: 0.6s;
}
