.videos-container {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.single-videos {
    width: calc(50% - 20px);
    border-radius: 12px;
    overflow: hidden;
    margin: 10px;
    background-color: #f2f2f2;
    transition: .3s;
    max-width: 600px;
    cursor: pointer;
}
.single-videos:hover {
    opacity: 0.85;
    box-shadow: 0 2px 4px 0 #f5f5f5;
}
.sv-image {
    position: relative;
}
.sv-overlay {
    text-align: center;
    width: 100%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
.sv-title, .sv-artist {
    background-color: rgba(0,0,0,0.5)
}
.sv-artist {
    padding-top: 10px;
    padding-bottom: 5px;
    color: white;
    font-size: 20px;
    font-weight: 700;

}
.sv-title {
    padding-bottom: 10px;
    font-size: 18px;
    color: white;
    font-weight: 300;
}
.sv-text {
    padding: 10px 20px 15px;
    color: var(--font-color);
    display: none;
}
.single-videos.active .sv-text:not(:empty) {
    display: block;
}

@media screen and (max-width: 1000px) {
    .single-videos {
        width: 100%;
    }
}