body {
    font-family: sans-serif;
    margin: 0;
    padding: 1rem;
     background-color: #f9f9f9;
}

h1 {
    font-size: 2rem;
    text-align: center;
}
h3 {
    font-size: 2rem;
    text-align: center;
}

p {
    font-size: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.875rem;
    }
}

  table {
    width: 100%;               
  }

  th, td {
    border: 1px solid #000;   
    padding: 8px;            
    text-align: center;      
  }

  th {
    background-color: #f2f2f2; 
    font-weight: bold;
  }

  .figures {
    display: flex;
    gap: 20px;       
  }

  .figures figure {
    width: 50%;       
    margin: 0;
  }

  .figures img {
    width: 100%;      
    height: auto;      
  }

  figcaption {
    text-align: center;
  }
figcaption.left {
  text-align: left;
}
