.projects {
    display: flex;
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
}

.projects a {
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: calc(100% / 3 - 1em);
    height: 20dvh;
    max-height: 200px;
    flex-direction: column;
    padding: 0.5rem;
    border: 1px solid whitesmoke;
    transition: all 0.1s ease;
    margin-bottom: 1em;
}

.projects a:hover{
    border: 1px solid black;
    background-color: #f0f0f0;
    transition: all 0.1s ease;
}

.projects a img {
    width: min-content;
    height: auto;
    max-width: 90%;
    max-height: 60%;
    margin-left: auto;
    margin-right: auto;
}

.projects a h3 {
    max-height: 20%;
    font-size: 1.7em;
}

.projects a p {
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .projects a {
        width: calc(100% / 2 - 1em);
    }
}

@media (max-width: 800px) {
    .projects a {
        width: calc(100% - 1em);
    }
}