/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for the list */
.list-container {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto 150px auto;
}

/* List styles */
#list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* List item styles */
.list-item {
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 1em;
    color: #333;
    flex-basis: calc(33.33% - 20px); /* Three items per row with some space between them */
    margin: 10px;
    text-align: center;
}

/* Hover effect */
.list-item:hover {
    background-color: #e0e0e0;
}

/* Responsive adjustments */
@media only screen and (max-width: 1000px) {
    .list-item {
        flex-basis: calc(50% - 20px); /* Two items per row on smaller screens */
        font-size: 16px;
    }
    .list-container {
        width: 100%;
        max-width: 600px; /* Adjust as needed */
        margin: 0 auto 100px auto;
    }
}
