* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
    font-family: 'Courier New', Courier, monospace;
}

a {
    color: lightgreen;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
    color: white;
}

html {
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.blog_header {
    font-size: 25px;
    font-style: bold;
}

.bottomnav {
    width: 10%;
    height: 15%;
    background-color: black;
    position: fixed;
    z-index: 1;
    bottom: 0;
    overflow-x: hidden;
}
  
.bottomnav a {
    text-decoration: none;
}

.bottomnav a:hover {
    color: #f1f1f1;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

.main {
    flex: 1;
    margin-top: 20px;
    align-self: auto;
}

.offsite_link {
    color: magenta;
}

.post {
    margin-top: 40px;
}

.post_header {
    font-size: 30px;
}

.post_link {
    padding: 20px;
    color: lightcoral;
    text-decoration: none;
}

.sidenav {
    /*background-color: red;*/
    height: 85%;
    width: 10%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.sidelink {
    color: rgb(11, 237, 245);
    font-size: 12px;
}

.wrap {
    white-space: normal;
    width: 80%;
    margin-left: 10%;
    padding-left: 10%;
    text-align: left;
}
