.body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  margin: 0;
  background-image: url("https://i.postimg.cc/x9MyhM3D/react-system.webp");
  background-size: cover;
  background-position: center;
  color: #fefefe;
  font-family: monospace;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 320px;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.25rem 0 #fefefe80;
  background-color: #01050880;
  backdrop-filter: blur(0.5rem);
  text-align: center;
}

.img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.title {
  margin: 0;
  font-size: 1.125rem;
}

.subtitle {
  margin: 0;
  font-size: 1rem;
  color: #bbb;
}

.text {
  margin: 0;
  font-size: 0.875rem;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem;
  border-radius: 0.5rem;
  background-color: #23b5e8;
  color: #010508;
  font-weight: bold;
  transition: box-shadow 0.25s, filter 0.25s;

  &:hover {
    box-shadow: 0 0.125rem 0.25rem 0 #23b5e8;
    filter: brightness(1.25);
  }
}

.link {
  color: #fefefe;
  font-weight: bold;
  transition: color 0.25s;

  &:hover {
    color: #23b5e8;
  }
}