body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #212122;
}

header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.item img{
    max-width: 360px;
    max-height: 640px;
    width: 360px;
    height: 640px;
    display: block;
    border-radius: 10px;
    object-fit:none;
}



.item video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: #fff;
}

.overlay h3,
.overlay p {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
}


.goback-btn {
    padding: 8px 16px;
    background-color: #ff86e0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.goback-btn:hover {
    background-color: #ff6ba3;
}
