body {
  background: #222222;
  font-family: 'Brill';
  font-size: 18px;
  margin: 0;
  padding: 0;
}

textarea {
  height: auto;
  resize: vertical;
}

.container {
  max-width: 600px;
  border-radius: 8px;
  margin: 0 auto;
  padding: 12px 0px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.content {
  width: 600px;
  box-shadow: 0px 0px 48px rgba(0,0,0,0.99);
  border-radius: 8px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
  background-color:#FAF9F6;
  font-family: inherit;
  font-size: inherit;
}
.content:hover {
  box-shadow: 0px 0px 48px rgba(200,200,200,0.7);
}
.app:hover{
  box-shadow: 0px 0px 48px rgba(200,200,200,0.7);
}
.paper-card {
  box-shadow: 0px 0px 48px rgba(0,0,0,0.99);
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
}
.paper-card:hover {
  box-shadow: 0px 0px 48px rgba(200,200,200,0.7);
}
.thumb-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}

.paper-thumb {
  width: 100%;
  aspect-ratio: 2.39/1;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
}
@media (max-width:600px) {
  .container {
    padding: 18px 2px;
  }
}
