* {
  box-sizing: border-box;
}

body {
  color: var(--custom-track-color, #808080);
  background-color: var(--custom-background-color, #fff);
  font-family: Verdana;
  display: grid;
  grid-template-rows: 50px auto 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 24px;
  min-height: 100dvh;
  overflow: hidden;
  gap: 10px;
}

body > main {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid #B8B8B8;
  height: 100%;
  width: 100%;
  padding: 20px 0;
}

.content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
  margin: 0 auto;
  width: 40dvh;
  max-width: 80dvw;
  padding: 10px;
  box-sizing: content-box;
}

.content > * {
  --size: 269;
  overflow: hidden;
  max-width: calc(var(--size) * 1px);
  width: 100%;
}

.content__avatar {
  position: relative;
  aspect-ratio: 1;
  pointer-events: none;
  user-select: none;
  background-color: #3f3f3f;
  box-shadow: inset 0 0 0 1px #B8B8B8;
}

.content__avatar > b,
.content__avatar > span {
  margin: 0 auto;
  position: absolute;
  max-width: 90%;
  color: #fff;
  right: 0;
  left: 0;
  text-overflow: ellipsis;
}

.content__avatar > b {
  top: calc(32 / var(--size) * 100%);
  font-size: 20px;
}

.content__avatar > span {
  top: calc(40 / var(--size) * 100% + 20px);
  font-size: 16px;
  opacity: .8;
}

.content__avatar > img {
  height: 100%;
  width: 100%;
}

.content ul {
  margin: 0;
  padding: 0;
  text-align: start;
}

.content ul > li {
  list-style: none;
  color: var(--custom-track-color, #808080);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.content ul > li:nth-child(1) {
  font-size: 20px;
}

.content ul > li:nth-child(2) {
  font-size: 16px;
}

.content ul > li:nth-child(3) {
  margin: 10px 0;
  font-size: 14px;
  opacity: .5;
}

.content ul > li:nth-child(4) {
  pointer-events: none;
  user-select: none;
}

.content ul > li:nth-child(4) > img:nth-of-type(n + 5) {
  filter: brightness(.8) grayscale(1);
}

a.content__button {
  background-color: var(--custom-main-color, #000);
  color: #fff;
  padding: 16px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

a.content__button::after {
  content: "";
  inset: 0;
  position: absolute;
  background-color: #808080;
  z-index: -1;
}

a.content__button:hover {
  filter: brightness(.98);
}