@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&family=Montserrat:wght@500&family=Roboto+Mono:wght@300&display=swap');

body {
  color: #ccc;
  background-color: hsl(230, 50%, 20%);
  font-family: Lato, Verdana, sans-serif;
  font-weight: 300;
  padding: 1em 2em;
}
a:link {
  color: #ccf;
  font-weight: 700;
  text-shadow: 0 2px 4px black;
}
a:visited { 
  color: #fcf;
}
strong {
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px black;
}
blockquote {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1em;
  border-radius: 1em;
  box-shadow: 0.5em 0.5em 0.5em rgba(0,0,0,0.5);
}
div.code, code {
  font-family: "Roboto Mono", monospace, sans-serif;
  font-weight: 300;
  white-space: pre-wrap;
  overflow: auto;
  max-height: 30em;
}
.right {
  float: right;
  margin: 1em; 
}
img {
  max-width: 100%;
  height: auto;
}
code {
  padding: 0.5em;
  background-color: #000;
  border-radius: 0.5em;
  vertical-align: baseline;
}
div.code {
  padding: 1em;
  margin: 1em 0;
  background-color: #111;
  border-radius: 1em;
  box-shadow: 0.5em 0.5em 0.5em rgba(255,255,255,0.1);
}
kbd {
  color: #000;
  background-color: #ccc;
  border-radius: 0.5em;
  display: inline-block;
  border: 2px outset;
  padding: 0.2em 0.5em;
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, Tahoma, sans-serif;
  clear: both;
}
h2 {
  border-top: 2px solid #ccc;
  padding: 0.5em 1em;
  margin: 2em -1em 0 -1em;
  text-shadow: 0px 2px 5px black;
}
li {
  margin: 0.5em 0;
}
ins {
  text-decoration: none;
  color: black;
  background-color: #6c6;
}