/* General Styles */
body {
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background-color: #000000;
    color: #ffffff;
}

/* a {
    color: #1c89ff; /* Original blue hyperlink color */
/* } */ 

/* Header Styles */
a {
     color :	#f3ce1f;
    }
#header {
    margin-top: 40px;
    padding: 20px;
}

#header img {
    width: 110px;     height: 125px; 
/*    border-radius: 50%; */
/*margin-bottom: 10px; */
    border: 4px solid white;
}

/* Container Styles */
#container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    padding: 20px;
}

/* Blog Styles */
#blogs {
    flex: 1; 
    margin-right: 10px; 
}

/* Projects Styles */
#projects {
    flex: 1; 
    margin-left: 10px; 
}

/* Social Links Styles */
#social-links {
    margin-top: 10px; 
    /* text-align: center;  */
}

#social-links a {
    text-decoration: none; 
    margin: 0 10px; 
     color: yellow;  /* #ffffff; */
}

#social-links a:hover {
    color: #1c89ff; 
}

/* Project Styles */
.project {
    margin-bottom: 65px; 
}

/* Footer Styles */
footer {
    background-color: #f0f0f0; 
    text-align: center; 
    padding: 10px;
    width: 100%; 
    position: fixed; 
    bottom: 0; 
    left: 0;
}

/* Job Banner Styles */
#job-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f0f0f0;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

#job-banner p {
    color: black;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #container {
        flex-direction: column; 
    }
    
    #blogs, #projects {
        flex: none; 
        width: 100%; 
        margin: 0; 
    }

    #header {
        width: 100%; /* Make header full width */
    }
}

#videos {
    margin-top: 20px;
}

#videos ol {
    list-style: decimal;
    padding-left: 20px;
}

#videos a {
    color: #f3ce1f; /* Match existing link color */
    text-decoration: none;
}

#videos a:hover {
    text-decoration: underline;
}
