body {
    font-family: 'Courier New', monospace;
    height: 99vh;
    float: left;
    background-color: #302e31;
    color: beige;
    width: 2000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    overflow-x: hidden;
    overflow-y: scroll;
}
#container {
    margin: 1px;
    height: 100%;
    width: 2000px;
    max-width: 100%;
}
#header {
    width: 100%;
    display: block;
    text-align: center;
    height: 70px;
    margin: 5px;
}
#header img {
    width: 64px;
    border-radius: 15%;
}
#title {
    font-family: Tahoma, sans-serif;
    font-size: 50px;
    text-align-last:center;
}
#body {
    display: grid;
    grid-template-columns: 80% auto;
}
#LSide {
    grid-column: 1;
    height: 100%;
    width: auto;
    display: flex;  
    flex-wrap: wrap;
    justify-content: left;
    margin: 1px;
    background-color: rgb(57, 51, 70);
}
#RSide {
    grid-column: 2;
    height: 100%;
    width: 100%;
    display: grid;  
    flex-wrap: wrap;
    justify-content: left;
    align-content:start;
    margin: 1px;
    background-color: rgb(57, 51, 70);
}
.post {
    background-color: rgba(54, 27, 27, 0.849);
    width: 40%;
    height: fit-content;
    margin: 5px;
}
.post p {
    width: 100%;
}
.post h2 {
    margin-left: 10px;
}
.post div {
    margin-left: 50px;
}
.btn {
    float: left;
    background-color: rgba(54, 27, 27, 0.849);
    width: 100%;
    height: fit-content;
    margin: 5px;
}
.btn a {
    text-decoration: none;
    color:beige;
}
.copy {
    color: aquamarine;
}
.copy:hover {
    cursor:cell;
    color:blueviolet;
}