body {
    background-color: rgb(255, 255, 255);
    font-family: Noto Sans, sans-serif;
    margin: 10px;
}

/* Header: Logo and Navbar*/
#header {
    display: flex;
    justify-content: space-between;
}

#topbar {
    background-color: rgba( 29, 74, 54,1);
    color: white;
    border-radius: 10px;
    width:100%;
    padding: 10px;
}
.text-logo {
    font-size: x-large;
    font-family: 'Courier New', Courier, monospace;
}
#hamburger {
    display: none;
}
.slice {
    background-color: white;
    border-radius: 2px;
    width: 30px;
    height: 5px;
    margin: 4px 0;
}

#navbar {
    font-size: medium;
    display: flex;
    justify-content: flex-end;
}
#navbar a {
    text-decoration: none;
    color: inherit;
}
.menu-item {
    background-color: inherit;
    padding: 1em;
    cursor: pointer;
    border-radius: 10px;
    color:white;
}
#home {
    background-color: rgb(6, 99, 104);
}
#home:hover{
    background-color: rgb(54, 150, 155);
    transition: 0.3s;   
}
#blog {
    background-color: rgba( 26, 66, 63,1);
}
#blog:hover{
    background-color: rgba( 58, 93, 90,1);
    transition: 0.3s;   
}
#about {
    background-color: rgba( 34, 85, 34,1) ;
}
#about:hover {
    background-color: rgba( 76,121, 76,1);
    transition: 0.3s;
}
/* End Header Properties*/

/* Content Properties */
#content {
    background-color: inherit;
    padding: 20px;
    color: black;
}
#content h1,h2,h3,h4 {
    color: rgba(  6, 48, 28,1);
}
#content-header {
    font-size: x-large;
}

#content-body {
    font-size: small;
    max-width: 700px;
}
#content-body li {
    list-style: square;
}
#content-body pre {
    background-color: rgba( 58, 93, 90,1);
    color:white;
    padding: 5px;
    border-radius: 5px;
    overflow: auto;
}
#content-body pre code {
    background-color: inherit;
}
#content-body code {
    background-color: rgb(95, 150, 95);
    padding: 3px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
}
#content-body a {
    color: rgb(55, 141, 102);
    text-decoration: none;
}
#content-body table,th,td {
    border: 1px solid white;
    border-collapse: collapse;
    background-color: rgba( 34, 85, 34,1);
    padding: 5px;
}
#content-footer {
    font-size: medium;
}
h1,h2 {
    font-size: inherit;
}

/* End Content Properties */

/* Blog Properties */

#blog-listing {
    display: flex;
    flex-direction: column;
    background-color: inherit;
    margin-top: 20px;
}
.blog-item {
    text-decoration: none;
    background-color: white;
    border-radius: 10px;
    color:black;
    transition: 0.3s;
    margin-bottom: 10px;
    border: solid;
}
.blog-item-index0:hover {
    background-color: rgba( 29, 74, 54,1);
    color:white;
    border: solid;
    border-color: black;
}
.blog-item-index1:hover {
    background-color: rgba( 26, 66, 63,1);
    color:white;
    border: solid;
    border-color: black;
}
.blog-item-index2:hover {
    background-color: rgba( 34, 85, 34,1);
    color:white;
    border: solid;
    border-color: black;
}
.blog-header {
    font-size: 20px;
    padding: 10px 0 0 20px;
}
.blog-date {
    font-size: 10px;
    color: darkgray;
    padding: 0 0 0 20px;
}
.blog-body {
    padding: 0 0 0 20px;
}

/* End Blog Properties */

/* Footer Properties */
#footer {
    background-color: rgba( 29, 74, 54,1);
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 15px;
    position: relative;
    bottom: 5px;
    font-size: 14px;
    color: white;
    margin-top: 75px;
    border: solid;
    border-color: black;
}
.footer-list a {
    text-decoration: none;
    color: white;
}
.footer-list {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}
h5 {
    text-emphasis: bold;
}
/* End Footer Properties */

/* Mobile Properties */
@media (max-width: 420px) {
    #topbar {
        display: flex;
        justify-content: space-between;
        width: auto;
    }
    #navbar {
        display: none;
        overflow: hidden;
    }
    #hamburger {
        display: block;
        align-self: flex-end;
        order: 0;
    }
    #header {
        overflow: hidden;
        position: relative;
        flex-direction: column;
    }
    #footer {
        flex-direction: column;
        padding-left: 5px;
    }
}
/* End Mobile Properites */