body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.video_block {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video_block video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.overlay {
    background-color: rgba(23, 23, 23, 0.3);
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center;
}

.contentBlock {
    color: #fff;
    text-align: center;
    padding: 40px;

    max-height: 100%; 
    overflow-y: auto; 
    scrollbar-width: thin; 
}


.contentBlock::-webkit-scrollbar {
    width: 6px;
}
.contentBlock::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.contentBlock a {
    color: #FFF;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.40);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.24px;
    text-decoration: none;
}

.contentBlock .reconstruct {
    margin: 45px 0;
    font-size: 20px;
}

.contentBlock .loc {
    color: #FFF;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.40);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.24px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .overlay {justify-content: center;}
    .contentBlock {
        padding: 10px;
    }
}