/* 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." */

body {
  margin:0;
  background-color: rgb(0, 10, 0);
  left:0;
  padding: 0;
  border-color: green;
  color: rgb(0, 255, 0);
}

.content {
  padding-left: 10px;
  background-color: rgb(0, 10, 0);
  color: rgb(255, 120, 0);
  font-family: comic-sans;
  padding-top: 36px;
  text-shadow:
    0 0 5px rgb(255, 120, 0),
    0 0 10px rgb(255, 120, 0),
    0 0 15px rgb(255, 120, 0);
  top: 36px;
}

.content p {
  font-size: 24px;
}

.topbar {
  background-color: rgb(0,50,0);
  padding: 5px;
  border-bottom: solid;
  border-width: 2px;
  width: 100%;
  border-color: rgb(0, 255, 0);
  position: fixed;
  top: 0;
  z-index: 1030
}
.topbar a {
  background-color: rgb(0,25,0);
  font-family: comic-sans;
  color: rgb(255, 120, 0);
  text-decoration: none;
  padding-right: 4px;
  border-right: solid;
  border-left: solid;
  padding-bottom: 5px;
  border-width: 2px;
  padding-left:4px;
  padding-top: 5px;
  border-color: rgb(0, 255, 0);
  text-shadow:
    0 0 2px rgb(255, 120, 0),
    0 0 5px rgb(255, 120, 0),
    0 0 7px rgb(255, 120, 0); 
  font-size: 24px;
  /* ive completely forgotten how to do anything.. */
}

.topbar a:hover {
  background-color: rgb(255, 100, 20);
  color: lime;
  text-shadow:
    0 0 5px rgb(0, 255, 0),
    0 0 10px rgb(0, 255, 0),
    0 0 15px rgb(0, 255, 0); 
}

.blogpost {
  background-color: rgb(5, 25, 0);
  font-family: comic-sans;
  color: rgb(255, 120, 0);
  border: solid;
  border-color: rgb(0, 255, 0);
  border-width: 2px; /* if ther border width, why no bordr height? */
  padding-left: 12px;
  width: calc(100% - 24px);
  line-height: 10px;
  /* bwaaa :3 */
}

.blogpost p {
  padding-left: 8px;
  line-height: 17px;
  font-size: 24px;
}

.blogpost h3 {
  font-size: 30px;
  line-height: 0px;
}

.blogpost h6 {
  padding-top: 0;
  line-height: 0;
}

.blogpost a {
  color: rgb(150, 75, 200);
  text-shadow:
    0 0 5px rgb(150, 75, 200),
    0 0 10px rgb(150, 75, 200),
    0 0 15px rgb(150, 75, 200);
    font-size: 24px;
    text-decoration: none;
}

.content a {
  color: rgb(150, 75, 200);
  text-shadow:
    0 0 5px rgb(150, 75, 200),
    0 0 10px rgb(150, 75, 200),
    0 0 15px rgb(150, 75, 200);
    font-size: 24px;
    text-decoration: none;
}

.content ul {
  font-size: 24px;
}

@font-face {
  font-family: "comic-sans";
  src: url("/chiller_regular.ttf") format("truetype");
}