body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #6eb679;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}
.info-tooltip { 
    width: 1rem;
    height: 1rem;  
    border-radius: 50%;  

    background-color: #333;
    color: white;

    
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    font-size: 0.8em; 
    font-weight: bold;
     
    vertical-align: top; 
     
    cursor: help;  
}
.container {
  max-width: 90vw;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
}

h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

h3 {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #333;
}

ul, ol {
  padding-left: 1.5rem;
}

blockquote {
  margin: 1rem 0;
  padding: 1rem;
  background: #f0f0f0;
  border-left: 5px solid #666;
  font-style: italic;
}
 .topic-wrapper
 {
     display: flex;
    justify-content: center; /* Centers children horizontally */
    align-items: center; 
    flex-direction:column;
 }
