/* 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: #22272e;
  color: #c8cbcf;
/*  font-family: Verdana;*/
  font-size: 1.25em;
  margin: 0px;
}

nav {
    grid-column: col-start/span 12;
    grid-row: 1;
}

nav,
nav a,
nav a:link,
nav a:visited {
    color: #adbac7;
    padding: 8px;
    letter-spacing: 5px;
    text-decoration: none;
}

img {
  max-width: 100%;
}

.img-500 {
  max-width: 500px; //for non-small screens
}

.last-edit {
}

.hamburger-nav {
  display: none;
  color: white;
  position: absolute;
  padding-right: 16px;
  padding-top: 10px;
  right: 0;
  top: 0;
}

.hamburger-nav:hover {
    color: grey;
}

nav a:hover {
    background-color: #adbac7;
    color: #22272e;
}

nav {
    font-weight: bold;
    margin-bottom: 6px;
}

a, a:visited {
  color: #00ace6;
}

a:visited {
  text-decoration: none;
}

#linux {
  font-weight:bold;
  font-size: 55px;
}

.pane-dual-row, .pane-dual {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-width: 60%;
  gap: 20px;
  margin-bottom: 5px;
}

.pane-dual-row {
  justify-content: center;
}

marquee {                                                             
  font-family: 'Common Pixel', sans-serif;
  color: #87ffaf;
  font-size: 1.25em;
  margin-top:5px;
  margin-bottom: 5px;
}

#title {
  font-weight: bold;
  font-size: 3em;
  letter-spacing: 5px;
  word-spacing: 5px;
  margin: auto;
}

#content {
  margin-bottom: 5px;
  border: 1px solid;
  padding: 2.5em;
  border-radius: 10px;
  line-height: 1.7em;
}

.bits {
  padding: 10px;
}

.bits .title {
  text-align: center;
  margin-bottom: 0px;
}

.bits .date {
  text-align: center;
  margin-top: 0px;
}

.bits img {
  display: block;
  margin: auto;
}

.bits-hr {
  border-top: dotted 1px;
}

pre code {
  background-color: #1b1b1b;
  display: block;
  border-radius: 0.25rem;
  padding: .5rem;
  line-height: 1.25em;
  overflow: scroll;
}

code {
  background-color: #1b1b1b;
  border-radius: 0.25rem;
  padding: .25rem;
  line-height: 1.25em;
}


blockquote {
  background-color: #313131;
  border-radius: 0.25rem;
  padding: 1rem;
  line-height: 1.5em;
}

header {
  margin-bottom: 10px;
  background-color: #1a1a1a;
  border-bottom: 1px solid;
  border-color: #1a56bd;
}

footer {
  letter-spacing: 2px;
  margin: 0px;
  margin-top: 10px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: calc(10px + 1vmin);
  justify-content: center;
  background-color: #1a1a1a;
  border-top: 1px solid;
  border-color: #1a56bd;
  padding-bottom: 10px;
}

@media only screen and (min-width: 650px) { 
  header, footer, #wrapper {
    padding-left: 10%;
    padding-right: 10%;
  }
  #buttons {
    width: 50%;
  }
}

@media only screen and (max-width: 1000px) {
  nav a {
    display:block
  }
  .hamburger-nav {
    display: block;
  }
  nav {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .pane-dual {
    flex-direction: column;
  }
  #content {
    padding: .5em;
    border: 0px;
  }

  .img-500 {
    max-width: 100%;
  }
}
