<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
      font-family: 'arial', cursive, sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to bottom, #fff8f0, #fefefe);
      color: #333;
    }

    header {
      background-color: #343a40;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1000px;
    }

    .logo {
      height: 50px;
    }

    .dropdown {
      background-color: #4b2e83;
      color: white;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      border-radius: 6px;
    }

    .dropbtn {
      background-color: #4b2e83;
      color: white;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      border-radius: 6px;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 6px;
    }

    .dropdown-content a {
      /*color: #4b2e83;*/
      color: #4b2e83;
      padding: 0.5rem 1rem;
      text-decoration: none;
      display: block;
      font-weight: bold;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    header h1 {
      margin: 0.5rem 0 0;
      font-size: 2.5rem;
      color: white;
      text-align: center;
    }

    .image-container {
      text-align: center;
      margin-top: 1rem;
    }

    .image-container img {
      max-width: 90%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .story {
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
      background: #ffffffb3;
      border-radius: 12px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: justify;
    }

   /* Remova o marcador padrÃ£o da lista */
  ul {
    list-style-type: circle;
    
  }

  /* Estilize os itens da lista */
  li {
    
    font-family: Arial, sans-serif; /* Define a fonte como Arial ou uma fonte sem serifa */
    margin-bottom: 10px; /* Adiciona um espaÃ§o de 10px abaixo de cada item */
    padding: 5px; /* Adiciona um espaÃ§o de 5px ao redor do texto */
    
  }

  #leitor{
    font-family: Arial, sans-serif; /* Define a fonte como Arial ou uma fonte sem serifa */
    margin-bottom: 10px; /* Adiciona um espaÃ§o de 10px abaixo de cada item */
    padding: 5px; /* Adiciona um espaÃ§o de 5px ao redor do texto */
    font-size: 1rem;
    font-weight: bold;
  }

  strong {
    font-size: 1rem;
    font-weight: bold;
  }
    .story h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .story p {
      line-height: 1.8;
      font-size: 1.2rem;
    }

     .story li {
      line-height: 1.8;
      font-size: 1.2rem;
    }

    .feedback {
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
      background: #e0f7fa;
      border-radius: 12px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .feedback h2 {
      font-size: 1.5rem;
      color: #00796b;
    }

    .feedback form {
      display: flex;
      flex-direction: column;
    }

    .feedback textarea {
      resize: vertical;
      min-height: 100px;
      padding: 0.5rem;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .feedback button {
      color: white;
      border: none;
      padding: 0.7rem;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 8px;
    }

    form{
        text-align: left;
    }

    .submete{
      background-color:#4b2e83;
      padding: 0.5rem 1rem;
      color:white;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }
      .story, .feedback {
        margin: 1rem;        
      }

      .submete{
        background-color:#4b2e83;
        color:white;
        padding: 0.5rem 1rem;
      }

      .top-bar {
        flex-direction: column;
        align-items: flex-start;
      }
      .logo {
        height: 40px;
      }
      .dropbtn {
        width: 100%;
        text-align: left;
        background-color: #4b2e83;
        color: white;
      }
      .dropdown-content {
        width: 100%;
        position: static;
        box-shadow: none;
        border: 1px solid #ddd;
      }
      
      .story &gt; p, h3{
        font-size:1.2rem;
        font-family: 'arial', cursive, sans-serif;
      }
      
      .story &gt; i{
        font-size:1.2rem;
      }
    }

    </pre></body></html>