main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.projects-container{
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: var(--projects-container-width);
    gap: 15px;
    color: var(--text-color-dark);
    font-family: Roboto, sans-serif;
    min-height: 400px;
}
div.project-preview{
    cursor: pointer;
    position: relative;
    max-width: 500px;
    min-width: 250px;
    padding: 5px;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--bg-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    transition: 0.2s all ease-in-out;
    align-items: stretch;
    height: 100%;
}
div.project-preview:hover{
    border: 2px dashed var(--secondary-color);
    div.arrow-right{
        background-color: var(--secondary-color);
    }
    div.arrow-right i{
        color: var(--text-color-light);
    }
}
div.project-preview img{
    aspect-ratio: 3 / 2;
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}
p.project-preview-title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 2px;
}
p.project-preview-description{
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--dim-gray);
}
p.status-indicator{
    align-content: center;
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 14px;
    color: var(--pumpkin-orange);
    font-weight: bold;
}
div.arrow-right{
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary-color);
    transition: 0.2s all ease-in-out;
    background-color: #d4508750;
}
div.arrow-right i{
    color: var(--secondary-color);
    transition: 0.2s all ease-in-out;
}
div.empty-search-result{
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--projects-container-width);
    height: 500px;
}
div.empty-search-result p{
    color: var(--text-color-dark);
    font-size: 16px;
    font-weight: bold;
}