/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
}

/* Basic styling for the page */
.container {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.navigation {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    text-align: center; /* Center align the list items */
}

.navigation li {
    display: inline-block;
    margin-right: 10px;
}

.navigation li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block; /* Ensure links take full width of parent */
}

.vert {
    display: flex;
    flex-direction: column;
}
.center-table {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    .navigation {
        text-align: center;
    }

    .navigation li {
        display: block;
        margin-bottom: 10px;
    }

    .navigation li:last-child {
        margin-bottom: 0;
    }
}
