@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #282c34;
    color: #abb2bf;
    padding: 50px;
}

header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: #729fcf;
    font-weight: bold;
    padding: 10px;
}

h1, h2 {
   color: #ffafff;
/*   
    color: #98c379;	
*/
}

p, li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #abb2bf;
}

article {
    margin-bottom: 50px;
}

#breadcrumbs {
    margin-bottom: 20px;
    color: #e06c75;
}

#searchBox {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #282c34;
    color: #abb2bf;
    margin-bottom: 30px;
}

.read-more-btn {
    background-color: #98c379;
    color: #282c34;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
}

.read-more-btn:hover {
    background-color: #86b365;
}

.extra-content {
    padding-top: 10px;
}

.responsive-img {
    width: 100%;
    height: auto;
    max-width: 800px; /* or any maximum width you prefer */
    display: block;
    margin: 0 auto 20px auto; /* centering the image and adding margin at the bottom */
}
