body {
  background-color: #000000;
  padding: 50px;
}

.page {
  background: rgb(153, 214, 61);
  width: 90%;
  max-width: 800px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 40px 40px 80px; /* Leave space for the red line */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  
  /* Create the blue horizontal lines */
  background-image: linear-gradient(#e1e1e1 1px, transparent 1px);
  background-size: 100% 1.5rem; /* Line spacing */
  line-height: 1.5rem;
}

.page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px; /* Distance from left edge */
  height: 100%;
  width: 2px;
  background-color: #ff8585; /* Margin red line */
}

h1, p {
  margin: 0;
  font-family: 'Courier New', Courier, monospace; /* Typewriter/handwritten feel */
  color: #333;
}