
    body {
      font-family:'Times New Roman', Times, serif;
      padding: 2rem;
      background: #fefefe;
      color: #222;
      max-width: 700px;
      margin: auto;
      line-height: 1.6;
      text-align: justify;
    }

    select {
      font-size: 1.1em;
      /* padding: 0.2em; */
      border: 1px solid #ccc;
      background: #000000;
      color: aliceblue;
      /* border-radius: 5px; */
    }

    /* ASCII flower size variations */
    .flower {
  display: inline-block;
  line-height: 1;
}

.flower-small {
  font-size: 0.8em;
}

.flower-medium {
  font-size: 1em;
}

.flower-large {
  font-size: 1.4em;
}

/* Fading animation for some flowers */
.flower-fade {
  animation: fadeInOut 6s infinite ease-in-out;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}

.conclusion-class {
  display: none;
}

.conclusion-class.selected-conclusion {
  display: block;
}

    @media (max-width: 600px) {
      body {
        /* padding: 1rem; */
        font-size: 1.4em;
      }
    }