* {
    scrollbar-width: none;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    font-family: ms gothic;
    background-image: url(bg.gif);
}
img {
    filter: grayscale();
    transition: 0.5s;
}
img:hover {
    filter: none;
}
hr {
    border: none;
    border-top: 2px dotted black;
}
a {
    transition: 0.5s;
    color: black;
}
a:hover {
    letter-spacing: 3px;
}
::selection {
    background: black;
    color: white;
    text-decoration: underline;
}
/*------------------------------container------------------------------*/

#contents {
    width: 700px;
    height: 100vh;
    display: flex;
}
section {
    display: flex;
    width: 100%;
}
/*------------------------------Nav------------------------------*/
nav {
    background-color: white;
    height: 100%;
    width: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: dotted black 2px;
}
nav h1 {
    writing-mode: vertical-lr;
    font-weight: normal;
    font-size: 20px;
    margin: 0;
    padding: 4px;
}
.nav ul {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
}
.nav a {
    color: black;
    display: block;
    width: 100%;
    text-decoration: none;
}
.nav a:hover {
    background-color: #e4e4e4;
}
.title {
    list-style-type: none;
    background-color: black;
    color: white;
    display: block;
    width: 100%;
}
/*------------------------------Decoration------------------------------*/
.dec {
    position: absolute;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.6);
}
#bottom {
    height: 30px;
    width: 100%;
    bottom: 0;
    border-top: black dotted 2px;
}
#left {
    height: 100%;
    width: 30px;
    left: 0;
    border-right: black dotted 2px;
}
#gradiant {
    height: 100%;
    width: 100px;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
/*------------------------------Blog------------------------------*/
.blogcont {
    height: 100vh;
    width: 100%;
    background-color: white;
    overflow: auto;
}
header {
    font-family: ms gothic ui;
    border-bottom: black dotted 2px;
    padding: 5px;
    padding-bottom: 0;
}
#blurb {
    display: flex;
    margin-top: 10px;
    padding-right: 10px;
}
#blurb aside {
    border-left: black dotted 2px;
    padding-left: 5px;
}
#blurb article {
    width: 100%;
}
#blurb p {
    margin: 5px;
}
#rss {
    margin-left: 5px;
    margin-right: 5px;
    height: 200px;
    border: black solid 1px;
}
#rss h3{
    display: none;
}
#rss h4{
    background-color: black;
    color: white;
    display: block;
    width: 100%;
    margin:0;
    padding-left:2px;
}
#rss p{
    display: block;
    width: 100%;
    margin:0;
    border-bottom:1px solid black;
    text-align: left;
}
/*------------------------------Entries------------------------------*/
#entries summary {
    filter: grayscale();
    transition: 0.5s;
    padding: 10px;
    margin: 15px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    display: flex;
}
#entries figure {
    margin: 0;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border: solid 1px black;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    box-shadow: -5px 5px 0 -1px rgba(0, 0, 0, 0.39);
}
#entries img {
    filter: none;
    border: solid black 1px;
}
#entries div {
    width: 100%;
    text-align: center;
    margin-left: 15px;
    align-self: center;
}
#entries details {
    text-align: center;
}
#entries video{
    filter: grayscale();
}
#entries video:hover{
    filter: none;
}
#entries span {
    font-weight: bold;
}
#entries summary:hover {
    filter: none;
}
details summary::-webkit-details-marker {
    display: none;
}
details > summary:first-of-type {
    list-style-type: none;
}
details a:hover{
    letter-spacing: 0;
}
#entries p {
    margin-left: 20px;
    margin-right: 20px;
    font-family: ms gothic ui;
    line-height: 20px;
}
details[open] summary ~ * {
    animation: sweep 0.5s ease-in-out;
}
@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}
.quote {
    background-color: #e4e4e4;
    font-style: italic;
}
