/*info.css*/

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    margin: 0;
}
/* Each section */
section {
    margin: 0 0 69px 0;
    padding: 20px;
}
/* Optional: Adjust footer */
footer {
    margin-top: auto;
    padding: 20px;
    background-color: #333;
    color: white;
}
h1,
h2 {
    text-align: center;
}
.container-info {
    margin-bottom: 50px;
}
section ul {
    margin-left: 20px;
    padding-left: 0;
    list-style-type: none;
}
section li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
a.button {
    display: inline-block;
    background-color: #4c9141;
    color: white;
    padding: 4px 6px;
    margin-top: 2px;
    text-decoration: none;
    border-radius: 5px;
}
a.button:hover {
    background-color: #3a7330;
}
