 body {
      font-family: "Comic Sans MS",  sans-serif;
      background: #fdf6e3;
      margin: 20px;
    }
    h1 {
      text-align: center;
      color: #444;
    }
    .section {
      margin-bottom: 40px;
    }
    .section h2{
      background-color: #ffb347;
      color: black;
      padding: 10px;
      text-align: center;
      border-radius: 8px;
    }
    .storyboard{
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .panel {
      background: white;
      border: 2px solid #ffcc80;
      border-radius: 10px;
      width: 220px;
      padding: 10px;
      box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
    }
    .panel .image {
      height: 100px;
      background: #ffe0b2;
      margin-bottom: 10px;
      text-align: center;
      line-height: 100px;
      color: #666;
      font-style: italic;
      border-radius: 6px;
    }
    textarea {
      width: 100%;
      height: 50%;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 5px;
      resize: none;
      font-family: "Comic Sans MS", cursive, sans-serif;
    }
    .characters {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .character {
      background: #fff8dc;
      border: 2px solid #deb887;
      border-radius: 10px;
      width: 200px;
      padding: 10px;
      text-align: center;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    }
    .character h3 {
      margin: 5px 0;
      color: #444;
    }
    .character textarea {
      height: 80px;
    }
    .print-btn {
      display: block;
      margin: 20px auto;
      padding: 10px 20px;
      background: #ff7043;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }
    .print-btn:hover {
      background: #f4511e;
    }
    file{
      display: block;
       background-color: #fff8dc;
      margin-top: 10px;
      font-weight: bold;
      color: #444;
     
    }
    p {
      text-align: justify;
      color: #555;
    }
    .bordear{
      border: 3px solid #f23704;
      border-radius: 10px;
      padding: 10px;
      
      box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
    }