@import url("https://fonts.googleapis.com/css2?family=Pangolin&display=swap");

html,
body {
  background-color: #b3cdd7;
  margin: 0;
  padding: 0;
}

body {
  color: #5f6aa0;
  font-family: "Pangolin", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.5rem;
}

h2 {
  font-size: 3em;
  color: white;

  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.25em 1em;
  border-radius: 0.15em;
  margin: 0;
}

#display-dashboard {
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.followers {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.followers div[data-group-name] {
  gap: 3em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-inline: 2em;
}

.followers div[data-group-name] .users,
.followers div[data-group-name] .add-user {
  display: contents;
}

.follower {
  gap: 0;
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  cursor: pointer;
}

.follower .image-area {
  position: relative;
}

.follower .action,
.follower .image {
  border-radius: 100%;
  max-width: 10em;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.follower .action {
  background-color: rgba(30, 30, 30, 0.75);
  font-size: 8em;
  width: 1.2em;
  height: 1.2em;
  aspect-ratio: 1;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.follower .action .emoji {
  font-size: 0.6em;
}

.follower .dismiss {
  display: flex;
  aspect-ratio: 1;
  border-radius: 100%;
  align-content: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(30, 30, 30, 0.9);
  box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.95);
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.5em;
  line-height: 1.75ch;
  transition: background-color linear 75ms;
  transform: translate(25%, -25%);
}

.follower .dismiss:hover {
  background-color: rgba(100, 100, 100, 0.9);
}

.follower .name {
  text-align: center;
  font-size: 1.5em;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.25em 1em;
  border-radius: 0.15em;
  margin: 0;
  margin-top: -1.5em;
  z-index: 2;
}
