/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(30, 32, 34);
  }
  
  /* Heading styling */
  h1 {
    color: wheat;
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px; /* Adding bottom margin */
  }
  



  /* Result box styling */
  #result {
    background-color: rgb(184, 190, 165);
    color: black;
    height: auto;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    font-size: 1.2em;
    margin-bottom: 20px;
    display: inline-block;  /* Adjust width based on text content */
    white-space: nowrap;    /* Prevent text from wrapping */
}

  
  /* Button styling */
  #next {
    background-color: bisque;
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    z-index: 0;
    border-radius: 5px;
    width:200px;
    display: none;
    margin-bottom: 20px; /* Adding bottom margin */
  }
  
  /* Responsive design for small screens */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.5em;
    }
  
    #result {
      width: 90%;
      font-size: 1.1em;
      padding: 12px;
    }
  
    #next {
      width: 15%;
      padding: 12px 24px;
    }
  }
  
  @media (max-width: 600px) {
    h1 {
      font-size: 1.2em;
    }
  
    #result {
      width: 95%;
      font-size: 1em;
      padding: 10px;
    }
  
    #next {
      width: 20%;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 400px) {
    h1 {
      font-size: 1em;
    }
  
    #result {
      width: 95%;
      font-size: 0.9em;
      padding: 8px;
    }
  
    #next {
      width: 25%;
      padding: 8px 16px;
    }
  }
  