/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #003153;
    background-image: repeating-linear-gradient(25deg, #003153 10%, #1B1B1B 10%,#000000 15%, #003153 15%, #1B1B1B 10%,#000000 30%);
    
    color: #000000;
    text-align: center;
    padding: 50px;
  }
    h2{
        font-size: 72px;
        font-variant: small-caps;
        font-family: 'Georgia', serif;
        color: #6d5b5b;
    }

    .h3{
        text-align: center;
        font-size: 36px;
        font-family: Georgia, 'Times New Roman', Times, serif;
        text-decoration: underline;
        font-variant: small-caps;
        

    }
    /* .generation-traits li {
      padding: 5px 0;
      font-size: 16px;
      color: #333;
    }
    
    .generation-traits li:hover {
      background-color: #e0e0e0;
    } */

  /* Input Box Styling */
  input[type="date"] {
    padding: 10px;
    font-size: 18px;
    min-width: 250px;
    border-radius: 10px;
    border: 2px solid #4CAF50;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
  }
  
  input[type="date"]:focus {
    border-color: #45a049;
    outline: none;
  }
  
  /* Button Styling */
  button {
    padding: 12px 25px;
    font-variant: small-caps;
  letter-spacing: 1px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  /* Result Styling */
  #result {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 50%;
    min-width: 300px;
    min-height: 500px;
  }
  
  /* Generation Title */
  h3 {
    font-size: 24px;
    color: #4CAF50;
  }
  
  /* Characteristics List Styling */
  ul {
    text-align: left;
    padding-left: 40px;
    list-style-type: disc;
    font-size: 18px;
    line-height: 1.8;
  }
  
  li {
    color: #555;
  }
  
  /* Responsive Design */

  @media (max-width: 1150px){
    h2{
      font-size: 42px;
      font-variant: small-caps;
      font-family: 'Georgia', serif
    }
    .h3{
      font-size: 30px;
    }
  }
  @media (max-width: 992px){
    ul .generation-traits li{
      font-size: 14px;
    }
  }
  @media (max-width: 600px) {
    body {
      padding: 20px;
    }
    h2{
      font-size: 28px;
      font-variant: small-caps;
      font-family: 'Georgia', serif
    }
    .h3{
      font-size: 18px;
    }
  
    #result {
      width: 90%;
    }
  
    input[type="date"] {
      width: 80%;
    }
  }
  

