@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Neue', cursive;
    background-color: #f8f9fa;
  }
  
  .lined-paper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 1.6;
    overflow: hidden;
  }
  
  .lined-paper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, #d3d3d3 1px, transparent 1px);
    background-size: 100% 30px;
    z-index: 1;
  }
  
  .lined-paper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60px;
    width: 2px;
    background-color: #ff6b6b;
    z-index: 2;
  }
  
  header h1 {
    margin: 0;
    padding: 10px 20px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .header-link {
  text-decoration: none;  
  color: inherit;        
}

/* Prevents visited links from turning purple */
.header-link:visited {
  color: inherit;
}

  
  main section {
    margin-bottom: 20px;
    padding: 10px 20px;
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  main h2 {
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 2px solid #ccc;
    color: #555;
  }
  
  main p {
    margin: 0;
    color: #666;
  }
  