.sermon-videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust the space between videos */
    padding: 20px;
}

.sermon-video {
    width: 100%;
    max-width: 320px; /* Adjust based on your layout needs */
    border-radius: 5px;
    overflow: hidden; /* Keeps the video within the boundaries of the border-radius */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	height: auto;
}
