@import url('../../css/index.css');
.container {
    overflow: hidden;
    height: 100dvh;
}

.title-container {
    height: 10%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.title-text {
    color: white;
    text-shadow: 0px 7px 8px var(--focus);
}

#video-container {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    width: 100dvw;
    height: 90%;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

#video-container::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}

#video-container::-webkit-scrollbar-track {
    background: transparent;
}

#video-container::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    border: none;
}

.video-item {
    width: 90%;
    height: 15%;
    background: var(--focus);
    margin: 5px 0px;
    transition: 1s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

video {
    height: 100%;
    width: 100%;
}

.video-item--active {
    background-color: var(--primary);
    height: 80%;
    box-shadow: 0px 0px 40px 4px black;
    z-index: 10;
}

.video-title {
    font-size: 30px;
    color: white;
}

@media only screen and (max-width: 600px) {
.second-title-jobs {
    font-size: 14px;
}
}