* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterRegular.woff2");
  font-display: swap;
  font-weight: 400;
}

body {
  margin: 0;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.user-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #2a2f37;
  border-radius: 20px;
  padding: 16px 24px 16px 16px;
  background: #1a1d22;
}

.user-card__avatar {
  display: block;
  border-radius: 100%;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.user-card__name {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 20px;
  color: #f3f4f6;
}

.user-card__position {
  font-weight: 400;
  font-size: 14px;
  color: #9ca3af;
}

.user-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 14px;
  color: #f3f4f6;
  text-decoration: none;
  background: #00447c;
  transition: background 0.3s;
}

.user-card__link:hover {
  background: #035496;
}
