body {
    background-image: url("../Pics/thumb_stars.jpg");
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow';
    margin: 0;
    padding: 0;
    padding-left: 20px;
    display: flex;
    min-height: 100vh;
    flex-direction: column; 
}

/* Sidebar */
.sidebar {
    width: 200px;
    background-image: url("../Pics/thumb_STEELPLT.jpg");
    
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 2px solid white;
}
a:visited{
    color:aqua;
}
.sidebar ul {
    list-style:disc;
    padding: 0;
}
.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.sidebar ul li a:hover {
    background-color: #444;
}

/* Main Content */
.content-wrapper {
    display: flex;
    flex: 1;
    margin-left: 220px;
    padding: 20px;
}

.middle-column {
    width: 60%;
}

.right-column {
    width: 40%;
    padding-left: 20px;
}

.bloghead {
    font-size: 32px;
    color: cyan;
}

/* Pinned Post */
.pinned-post {
    display: flex;
    margin-bottom: 20px;
}

.pin-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    
}

.pinned-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.blogarticles dt {
    margin-top: 10px;
}
.list {
    color: rgb(0, 247, 255);
}
.blogbreak{
    height: 1px;
    color: aqua;
    background-color: aqua;
    border: none;
}

a .articletag{
    color: red !important;
    font-style: italic;
    font-weight: bold;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    margin-top: auto;
}
