/* 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 {
  background-color: black;
  color: lightgrey;
  font-family: monospace;
  font-size: 20px;
}

.mainsite {
  padding-left: 70px;
}

.blogheader {
  color: lightgrey;
  font-family: fantasy;
  font-weight: bold;
  font-style: oblique;
  font-size:20px;
}

.blogpost {
  max-width: 1100px;
  font-size: 16px;
}

table, th, td {
  table-layout: auto;
  border: 1px white;
  border-collapse: collapse;
  height: 40px;
  width: 28px;
}

.khanbutton {
  position: absolute;
}

.crt {
/* scanlines */
  background: linear-gradient(to top, #000000, #000000, #333333, #333333);
  background-size: cover;
  background-size: 100% 4px;
  width: 1400px;

/* retro stuff */
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 20px;
  text-shadow: 0 0 10px #00ff00;
  filter: blur(.5px);
  border-radius: 100px;
}

@media screen{
  .crt {
    animation: scanlines infinite 5s linear ;
  }
} 
@keyframes scanlines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -10px;
  }
}

.bottombuttons {
  padding-left: 110px;
}

.buttoncode {
  font-size:10px;
  border: 1px white;
  border-collapse: collapse;
  background-color: #333333;
  position: absolute;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: black darkgrey;
  height: 40px;
  width: 178px;
}

a:link, a:visited {
  color: lightgrey;
}