@font-face {
    font-family: 'sf_distant_galaxyregular';
    src: url('https://vadermaker.com/css/fonts/webfontkit-20230930-135232/sf_distant_galaxy-webfont.woff2') format('woff2'),
         url('https://vadermaker.com/css/fonts/webfontkit-20230930-135232/sf_distant_galaxy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    color: silver;
    font-family: 'sf_distant_galaxyregular', sans-serif;
    margin: 0;
    padding: 0;
}

/* ...rest of your CSS styles... */


header {
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: silver;
    font-weight: bold;
}

main {
    text-align: center;
    padding: 20px;
}

/* Add this CSS to style the video thumbnails grid */
.video-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-gap: 20px; /* Gap between thumbnails */
}

.video-thumbnail {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail img {
    max-width: 100%;
    height: auto;
}

.play-button {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 0;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

.video-thumbnail:hover {
    filter: grayscale(100%);
}

/* Rest of your CSS styles remain the same */
