#hero > #image {
    background-image: url('assets/images/hero-projects.jpg');
}
#projects > .wrapper > .content {
    display: flex;
    flex-direction: row;
    max-width: 1024px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 62px;
    align-self: stretch;
    flex-wrap: wrap;
    padding: 0 0 96px 0;
}
#projects > .wrapper > .content > .project {
    display: flex;
    min-width: 300px;
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    cursor: pointer;
}
#projects > .wrapper > .content > .project > .image {
    display: flex;
    height: 400px;
    align-items: flex-start;
    gap: 2px;
    align-self: stretch;
    background-size: cover;
    background-position: center;
}
#project {
    display: none;
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    background-color: #ffffff;
    z-index: 990;
}
#project > #splash {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#project > #splash > h1 {
    text-align: center;
}
#project > #description {
    display: flex;
    padding: 64px 16px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
#project > #description > p {
    max-width: 640px;
}
#lightbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    z-index: 2000;
}
#lightbox > #image {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
}
#lightbox > #prev, #lightbox > #next {
    width: 48px;
    cursor: pointer;
}
#project img {
    filter: drop-shadow(0px 4px 20px rgba(54, 86, 124, 0.5));
}
#project > #close {
    position: fixed;
    right: 32px;
    top: 66px;
    width: 48px;
    cursor: pointer;
}
@media screen and (max-width: 640px) {
    #lightbox > #prev, #lightbox > #next {
        width: 32px;
    }
    #project > #close {
        right: 16px;
        width: 32px;
    }
}