

body {
    margin: 0;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
}

/*.content-container {
    width: 40%;
    min-height: 100vh;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}*/

/*.header {
    width: 100%;
    height: 100px;
    padding-top: calc(1.25rem + .8rem);
}

.footer {
    width: 100%;
    height: 200px;
    padding-bottom: calc(1.25rem + .8rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}*/

.image-container,
.title-container,
.description-container {
    width: 100%;
    margin-bottom: 20px;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; /* Equal spacing between images */
}

.image-container img, 
.image-container .video-container {
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for width changes */
    height: 8vh;
    width: auto;
    opacity: .4;
    position: relative;
}

.video-container video {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}

img.focus,
.video-container.focus {
    width: 100%;
    height: auto;
    opacity: 1;
    cursor: auto;
}

.video-container.focus video {
    width: 100%;
    height: auto;
    z-index: 3;
}

.video-container .play {
    content: '▶'; /* Play icon */
    font-size: 6vh;
    color: white;
    text-shadow: 0 0 20px rgb(0, 0, 0);
    position: absolute;
    top: 53%;
    left: 53%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.video-container.focus .play {
    content: '';
}

.description-container {
    font-family: JJannon;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #555;
    text-align: left;
}

