.sculpture-container{
    width: 50vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    padding-bottom: 100px;
}

.sculpture-masonry {
  columns: 4;
  column-gap: 5px;
}

@media only screen and (max-width: 1300px) {
.sculpture-container{
        width: 90vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    .sculpture-masonry {
    columns: 3;
    column-gap: 5px;
    }
}

@media only screen and (max-width: 1000px) {

    .sculpture-masonry {
    columns: 3;
    column-gap: 5px;
    }
}

.sculpture-title{
    width: 100%;
    font-size: 3em;
    font-family: Hirosht;
    margin-bottom: 20px;
}

.sculpture-desc{

    font-size: 1.5em;
    font-family: Alpha-Medium;

    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.sculpture-masonry-element{
    transition: all 0.2s ease-in-out;
}



.sculpture-masonry-element > img{
    object-fit: cover;
    /* height: 100%; */
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    border-radius: 10px;
}



.sculpture-masonry-element > img{
    object-fit: cover;
    /* height: 100%; */
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    border-radius: 10px;
    scale: 100%;
    transition: all 0.8s ease-in-out;
}

#modal{
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;


    min-width: 100vw;
    min-height: 100vh;
    height: 100%;

    background-color: #00000099;
}

.modal-img{
    cursor: pointer;
}

#modal-img{
    max-width: 80vw;
    max-height: 80vh;
    height: auto;
}