* {
  box-sizing: border-box;
}

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

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

.participants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto;
  padding: 24px;
  max-width: 640px;
  list-style: none;
}

.participants__card {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 10px 16px 10px 12px;
  gap: 12px;
}

.participants__avatar {
  display: block;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.participants__name {
  font-weight: 500;
  font-size: 16px;
  color: #111827;
}
