h1 {
    text-align: center;
    color:rgb(42, 95, 42);
}

body { 
    background-color: rgb(247, 250, 241);
    font-family:Arial, Helvetica, sans-serif
}

.context {
    display:flex;
    background-color: rgb(239, 240, 235);
    width: 90%;
    padding: 15px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px  rgb(204, 202, 199);

}


 table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    table-layout: fixed;
    font-size: 10px;

        }
th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
    background-color: rgb(252, 252, 250);
 }

 th {
    background-color: #b6cba6;
}

nav {
    text-align: center;
    width: 90%;
    background-color: #b6cba6;
    text-decoration: none;
    padding: 10px;
    margin: 0 auto;    
    border-radius: 5px;
    display: flex; 
    justify-content: center;
    gap: 200px;

}

a {
    text-decoration: none;
    color: black;
}

dt {
    text-decoration: underline;
}

footer {
    text-align: center;
}
@media (max-width: 600px) {
  .context {
    flex-direction: column;
  }
}