/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   @font-face {
  font-family: "Pixel Digivolve";
  src:
    url("Pixel Digivolve.otf") format("opentype"),
}

body {
  background-color: #fffef3;
  color: black;
  font-family: monospace;
  background-image: url('/bg.png');
  background-attachment: fixed;
  background-repeat: repeat-x;
  /*background-position: -30% 0;*/
}

.blogpost-wrapper {
  max-width: 871px;
  padding: 15px;
  height: 500px;
  overflow-y: auto;
  color: #6d99b8;
  border: 1px dashed rgba(73, 79, 104,255);
  background-color: rgba(255, 255, 255, 0.8);
}

.blogpost-header {
  display: flex;
  background-color: #86afbf;
  padding: 5px;
  align-items: center;
}

p {
  line-height: 20px;
  font-size: 14px;
}

.intro {
  font-family: "Pixel Digivolve";
  color: #6982a8;
}

.goofy-ah {
  margin: 10px 0;
}

h1 {
  color: #cd4946;
  text-transform: uppercase;
  font-family: "Pixel Digivolve";
  margin: 0;
  margin-bottom: 10px;
  
}

h2 {
  color: #394661;
  text-transform: uppercase;
  font-family: "Pixel Digivolve";
  margin: 0;
  flex-grow: 1;
}

h3 {
  margin: 0;
  color: #394661;
  text-transform: uppercase;
  font-family: "Pixel Digivolve";
  font-size: 14px;
}

h4 {
  font-family: "Pixel Digivolve";
  margin: 20px 0 10px 0;
  color: #394661;
}


a {
  color: #6d99b8;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  border-bottom: 1px dashed;
  color: #dd8886;
}

.container {
  display: flex;
  margin: 0 0 0 30px;
}

.container > div.menu {
  border: 1px dashed rgba(73, 79, 104,255);
  background-color: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
  align-self: flex-start;
  padding: 15px;
  max-width: 230px;
  
}

.container > div.content {
  grid-area: content;
}

.post-list {
  list-style-type: square;
  margin: 0;
  padding-inline-start: 20px;
}

.post-list > li {
  font-family: "Pixel Digivolve";
  padding: 2px 0;
  
}

.post-list > li::marker {
  color: #dd8886;
}
