.gallery {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.neckvid {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.neckvid video {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

/* Each image block */
.neckimg {
    flex: 1; /* Ensures images are evenly spaced */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Full height of container */
    overflow: hidden;
}

/* Images fit height */
.neckimg img {
    width: 100%; /* Full height of parent */
    display: block;
}

/* Title styles */
.title {
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

