/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}
    text-align: center;
}

/* Add your custom CSS styles here */
/* Global Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */

header {
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Navigation Bar Styles */

.course-navbar {
    background-color: #343a40;
    text-align: center;
}

.course-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-navbar li {
    display: inline;
    margin: 0 15px;
}

.course-navbar a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.course-navbar a:hover {
    color: #007BFF; /* Highlight color on hover */
}

/* Style the main content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Style course details section */
#course-details {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

#course-details img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

#course-details h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #007BFF;
}

#course-details p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

#course-details ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Style footer */
footer {
    background-color: #007BFF;
    color: black;
    text-align: center;
    padding: 20px 0;
    margin-top: 5px;
    font-size: 20px;
}

/* Add hover effect for links */
a:hover {
    color: #007BFF;
}

/* Add a button style for links */
a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a.button:hover {
    background-color: #0056b3;
}
    text-align: center;
}


/* Style the social media icons */
footer ul.list-inline {
    padding: 0;
    list-style: none;
}

footer ul.list-inline li.list-inline-item {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

footer ul.list-inline li.list-inline-item:last-child {
    margin-right: 0;
}

footer ul.list-inline li.list-inline-item a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    transition: color 0.3s;
}

footer ul.list-inline li.list-inline-item a:hover {
    color: greenyellow; /* Change the color on hover (you can customize this) */
}
