.document-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.document-wrapper {
  display: flex;
  height: 90vh;
  aspect-ratio: 210 / 297;
  background: #fff;
  max-height: 297mm;
  overflow: hidden;
}

.document {
  width: 100%;
  padding: 0.5rem;
}

.document__header {
  display: flex;
  justify-content: space-between;
}

.document__header img {
  height: 60px;
}
