body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

#video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.video-card .video-info {
    padding: 15px;
}

.video-card .video-info h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.video-card .video-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.video-card .video-info button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.video-card .video-info button:hover {
    background-color: #0056b3;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 8px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#videoPlayer {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .video-card {
        width: 100%;
    }
}

header {
    background-color: #333;
 //   padding: 1rem;
      width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    border-radius: 8px;
    z-index: 1; 
}
        nav a {
            color: white;
            text-decoration: none;
            margin-right: 1rem;
        }

        .profile {
            display: flex;
            align-items: center;
        }

        .profile img {
           /* width: 50px;
            height: 50px;
            border-radius: 50%; */
            margin-right: 1rem;
        }

        .profile-details {
            color: white;
        }

        .profile-details h1,
        .profile-details p {
            margin: 0;
            padding: 0;
        }

        .social-links {
            display: flex;
            align-items: center;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            margin-left: 1rem;
        }
        