.root {
  font-size: 12px;
  font-weight: lighter;

  padding: 0;
  margin: 0;
}

.header {
  width: 100%;
  padding: 2rem 4rem;

  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 0.06),
    0px 1px 1px -0.5px rgb(0 0 0 / 0.06),
    0px 3px 3px -1.5px rgb(0 0 0 / 0.06),
    0px 6px 6px -3px rgb(0 0 0 / 0.06),
    0px 12px 12px -6px rgb(0 0 0 / 0.06),
    0px 24px 24px -12px rgb(0 0 0 / 0.06);
  /* Shadow config from: https://ui.aceternity.com/tools/box-shadows */

  background: linear-gradient(
    82deg,
    #ffffff 60%,
    #aa7bec 90%,
    #681baf 100%
  );

  opacity: 0.9;
  backdrop-filter: blur(30px);

  z-index: 999;
}

.header-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin: 0;
}

.header-subtitle {
  color: #aaa;
  line-height: 1rem;
  font-weight: 300;
}

main {
  height: 100%;
  width: 100%;

  padding: 10rem 0;
  display: flex;
  justify-content: stretch;

  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;

  padding: 0 1rem;
  margin: 0;
}

.column.column-center {
  flex-grow: 1;
}

.column.column-left,
.column.column-right {
  width: 400px;
  flex-shrink: 0;
}

.column.column-left {
  padding-left: 12rem;
}

.column.column-right {
  padding-right: 12rem;
}

.name {
  font-weight: 200;
  font-size: 2rem;
}

.avatar {
  width: 12rem;
  height: 12rem;

  overflow: hidden;
  border-radius: 999px;

  box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 0.06),
    0px 1px 1px -0.5px rgb(0 0 0 / 0.06),
    0px 3px 3px -1.5px rgb(0 0 0 / 0.06),
    0px 6px 6px -3px rgb(0 0 0 / 0.06),
    0px 12px 12px -6px rgb(0 0 0 / 0.06),
    0px 24px 24px -12px rgb(0 0 0 / 0.06);
  /* Shadow config from: https://ui.aceternity.com/tools/box-shadows */
}

.avatar > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.subtitle {
  font-weight: 200;
  font-size: 1.5rem;

  color: #681baf;

  vertical-align: middle;
}

.subtitle::before {
  content: "";

  display: inline-block;
  vertical-align: middle;
  height: 1em;
  width: 0.3em;

  margin-right: 0.5em;

  border-radius: 999px;

  background: linear-gradient(
    20deg,
    #1830ab 60%,
    #aa7bec 90%,
    #681baf 100%
  );
}

li {
  font-weight: 300;
}

footer {
  border-top: solid 1px #ccc;

  padding: 2rem;
}

footer > p {
  margin: 0;
  color: #aaa;
  font-weight: 200;
}
