#blog {
  padding: 2rem;
  padding-top: 0rem;

  max-width: 800px;
  box-shadow: 0px 5px 5px #99999988;
  border: 1px solid gray;
}

html,
body {
  height: 100vh;
  margin: 0;
  font-size: 1rem;
  font-family: MS UI Gothic, "MS-UI-Gothic", 'system-ui';
}

* {
  box-sizing: border-box;
}

p {
  font-family: 'Segoe UI', 'system-ui';
  font-size: 0.9rem;
}

h1 {
  font-size: 1.25rem;
}

h1,
h2,
h3,
h4 {
  color: #505876;
}
h4 {
  font-size:0.75rem;
}

ul {
  font-size: 0.90rem;
  list-style-type: square;
  padding-left: 15px;
  margin: 0;
}

@font-face {
  font-family: "MS-UI-Gothic";
  src: url(../fonts/MSGOTHIC.TTF);
}

#post {
  padding:2px;
  background-color: rgb(236, 236, 236);
  margin: 5px;
  border: 1px solid gray;
}

.entry {
  width: fit-content;
  background: linear-gradient(to bottom, #fefefe, #dcdcdc);
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  box-shadow: inset 0 1px 0px #ffffff, inset 0 -1px 0px #c4c4c4, 0 1px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  height: 40px;
  margin: 10px auto;
  padding: 0 10px;
  font-family: 'Segoe UI', system-ui;
  font-size: 0.9rem;
  color: #000;
  text-align: left;
  transition: all 0.1s ease-in-out;
  text-decoration: underline;
}

.entry:hover {
  background: linear-gradient(to bottom, #ffffff, #e4e4e4);
  box-shadow: inset 0 1px 0px #ffffff, inset 0 -1px 0px #b4b4b4, 0 2px 2px rgba(0, 0, 0, 0.2);
}

.entry:active {
  background: linear-gradient(to bottom, #cccccc, #bbbbbb);
  box-shadow:
    inset 0 2px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(1px);
}

@media only screen and (max-width: 800px) {
  .entry {
    min-height: 35px;
    height:auto;
  }
  iframe {
    max-width: 100%;
  }
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 16px
  }
  ::-webkit-scrollbar-corner {
  background: #eee
  }
  
  ::-webkit-scrollbar-track:vertical {
  background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  }
  
  ::-webkit-scrollbar-thumb {
  border: 1.5px solid #888;
  border-radius: 3px;
  box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
  background-color: #eee;
  }
  ::-webkit-scrollbar-thumb:vertical {
  background: url("https://dl.dropbox.com/s/9a29qbkza3gmgl7/scroll1.png"), linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
  background-repeat: no-repeat;
  background-size: 65% auto, cover;
  background-position: center;
  }
  
  ::-webkit-scrollbar-button:vertical:end:increment,
  ::-webkit-scrollbar-button:vertical:start:decrement {
  display: block
  }
  
  ::-webkit-scrollbar-button:vertical {
  height: 15px
  }
  ::-webkit-scrollbar-button:vertical:start:decrement {
  background: white;
  background: url("https://dl.dropbox.com/s/n9ji42h9hdgdtpc/scroll3.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: 100% auto, cover;
  -webkit-background-size: 100% auto, cover;
  -o-background-size: 100% auto, cover;
  background-size: 100% auto, cover;
  background-position: center;
  border-radius: 0 3px 0 0;
  } 
  
  ::-webkit-scrollbar-button:vertical:start:increment {
  display: none;
  }
  ::-webkit-scrollbar-button:vertical:end:decrement {
  display: none;
  }
  
  ::-webkit-scrollbar-button:vertical:end:increment {
  background: white;
  background: url("https://dl.dropbox.com/s/cdcco6pih7n1lae/scroll4.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: 100% auto, cover;
  -webkit-background-size: 100% auto, cover;
  -o-background-size: 100% auto, cover;
  background-size: 100% auto, cover;
  background-position: center;
  border-radius: 0 0 3px 0;
  }