
.item-container img, .item-container video {
    width: min(100%, 500px);
    height: auto;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px #848484 solid;
}

.item-container{
    background-color: white;
    border-radius: 8px;
    border: 1px #848484 solid;
}

.galleries {
    background-color: rgb(249, 245, 224);
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    display: grid;
}

.gallery {
    background-color: white;
    padding: 2vw;
    border-radius: 5px;
}

@media (min-width: 768px) {

    .gallery{
        display: flex;
        gap: 20px;
    }

    .gallery img {
        width: 400px;
        border: gray solid 1px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {

    .gallery{
        display: grid;
    }

    .gallery img {
        margin: auto;
        width: 200px;
        height: 100%;
        border: gray solid 1px;
        border-radius: 8px;
    }
}

.gallery-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 kolom dengan lebar sama */
    gap: 10px;
    background-color: rgb(255, 252, 237);
    padding: 10px;
    border-radius: 0.5rem;
}


.item-container{
    display: grid;
    justify-items: center;
}

#input{
    display: none;
}