.mono {
    font-family: ui-monospace, 
        SFMono-Regular, 
        Menlo, 
        Monaco, 
        Consolas, 
        "Liberation Mono", 
        "DejaVu Sans Mono", 
        "Courier New", 
        monospace;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.1rem;

}

#projects-container{
    display: flex;
    width: 100%;
    /* justify-content: space-between; */
    justify-content: space-evenly;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-div {
    background: #393e4185;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:flex-start;
    width: 20rem;
}

.project-div a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-div {
   width: 20rem;
   height: 20rem;
}

.project-div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.project-div p {
    margin-bottom: 0;
}