.project-container {
    padding: 0;
}

.project-gallery {
    display: flex;
    gap: 1rem;
    height: 50vh;
    overflow-x: auto;
    scroll-snap-type: mandatory;
    margin-bottom: 4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.image-scroll::-webkit-scrollbar {
    display: none;
}

.image-wrapper {
    flex: 0 0 auto;
    height: 100%;
    width: fit-content;
    box-sizing: border-box;
    display: flex;
    scroll-snap-align: start;
}

.image-wrapper img {
    height: 100%;
}

.project-details {
    position: relative;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.secondary p {
    color: grey;
    margin-bottom: 1rem;
}

.project-details a {
    text-decoration: underline;
}