.imp-container {
    padding: 20px 0;
    bottom: 0;
    margin-bottom: 0;
    margin-top: auto;
    width: 100%;

    background: linear-gradient(blue,aqua);

    display: flex;
    flex-direction: column; /* Arrange items in a column */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text within items */

    
}
.imp-title{
    font-size: 1.5em;
    margin-bottom: 20px; /* Space below the title */
    width: 100%;
}
.imp-items{
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to next line if necessary */
    align-items: center;
    justify-content: center; /* Center items horizontally */
    flex-direction:unset;
    gap: 10px;
}
.imp-item{
    max-width: 200px;
    min-width: min-content;
    width: fit-content;
    flex: 0 0 auto; /* Allow items to shrink and not grow */
    padding: 10px;
    margin: 5px;
    background-color: darkblue;
    border: 1px solid black;
    color: aqua;
    border-radius: 5px;
    box-sizing: border-box;
}
.imp-item a{
    color: aliceblue;
}