* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

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

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

.social-links__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  padding: 40px;
  background-color:  hsl(0, 0%, 12%);
  border-radius: 15px;

}

.social-links__description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 25px;
}

.social-links__name {
  font-weight: 600;
  font-size: 25px;
}

.social-links__place {
  color:  hsl(75, 94%, 57%);
  font-weight: 500;
  font-size: 15px;
}

.social-links__content {
  font-weight: 300;
  font-size: 14px;
}

.social-links__btn {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding-top: 25px;
}

button {
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  padding: 13px 8px;
  border-radius: 7px;
  border: none;
}

button:hover {
  background-color: hsl(75, 94%, 57%);
  color:  hsl(0, 0%, 8%);
  font-weight: 700;
  cursor: pointer;
}

@media screen and (max-width: 420px) {
  .social-links__card {
    width: 260px;
  }
}