body {
  background-color: rgba(3, 4, 18, 1);
  color: rgba(64, 64, 74, 1);
  font-family: 'LibertinusMonoMono';
}

:root{
  --page: rgba(3, 4, 18, 1);   
  --well: rgba(3, 4, 18, 1);   
  --hi: rgba(255,255,255,.05);    
  --lo: rgba(0,0,0,.6);
}


.entries {
  display: flex;
  flex-direction: column-reverse; 
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  width: 75%;
  gap: 1rem;
}

.entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--well);
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    inset 10px 10px 20px var(--hi),
    inset -10px -10px 20px var(--hi),
    0 1px 3px rgba(0,0,0,.6);
}

