.shelf{
    margin-bottom: 20px;
}
nav{
    position: sticky;
    top: 24px;
    min-width: 150px;
    overflow: hidden;
    overflow-y: hidden;
    height: min-content;
    margin: 10px;
    display: flex;
    flex-direction: column;
}
nav a{
    padding-bottom: 3px;
}
.blog-entry{
    text-align: left;
    position: relative;
}
.blog-image{
    margin: 10px;
    margin-top: -10px;
    max-height: 200px;
    float: right;
}
.date{
    font-family: basiic;
    position: absolute;
    right: 20px;
    top: 0px;
}

@media only screen and (max-width: 700px) {
nav{
    display: none;
}
}