body {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Garamond', serif;
    color: #f0e6d2;
    text-align: center;
    padding: 2rem;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px #000;
  }
  
  select, button, input {
    font-size: 1rem;
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    border: none;
    background: #5c4033;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 5px black;
  }
  
  button:hover {
    background: #8b5c42;
  }
  
  .section {
    background: rgba(0,0,0,0.6);
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
  }
  
  .result {
    margin-top: 2rem;
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
  }
  
  .info-icon {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #ffd700;
    position: relative;
  }
  
  .tooltip {
    visibility: hidden;
    background: url('../images/parchment.jpg') no-repeat center center;
    background-size: cover;
    color: #000;
    text-align: left;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    font-size: 0.9rem;
    box-shadow: 2px 2px 10px #000;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
  }
  
  .info-icon.active .tooltip {
    visibility: visible;
    opacity: 1;
  }
  
  .infoBox {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: url('../images/parchment.jpg') no-repeat center center;
    background-size: cover;
    color: black;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 2px 2px 8px black;
  }
  