html {
  font-family: 'Alice', serif;
  font-weight: 400 !important;
}

body {
  background-color: #101010;
  color: #CACACA;
  display: flex;
}

body > div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 75rem;
}

body > div:first-child {
  width: 12rem;
  min-width: 12rem;
  text-align: right;
  border-right: 1px solid rgba(202, 202, 202, 0.25);
}

body > div:first-child > img {
  width: 8rem;
  border: 1px solid rgba(202, 202, 202, 0.25);
  border-radius: 0.25rem;
}

body > div:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

p {
  text-wrap: pretty;
  text-align: justify;
}

h1 {
  color: #CF9CEF;
}

a {
  color: inherit;
  text-decoration: none;
}

a::before {
  content: '>';
  color: rgba(202, 202, 202, 0.5);
  display: inline-block;
  padding-right: 0.35rem;
}


