div.divider {
    height: 4px; 
    background-color: #ffffff; 
    margin: 4px 0; 
    position: relative; 
    bottom: 2px;
}

.filters {
    width: 200px;
    float: left;
    margin-right: 10px;
}

.content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#project-list {
    width: 100%;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */

    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    /* grid-auto-rows: 180;  */
    gap: 4px;
}

.project {
    display: inline-block;
    text-align: center;
    padding: 10px;
    border: 4px solid #ffffff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: black;
    text-decoration: none;
}

.project:hover {
    background-color: #ddeeff;
    transition: all 0.2s ease-in-out;
}

.project img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}



#lesson {
    width: 100%;
    font-size: 14px;
    border: none;;
}