
html {
  font-family: Lato, sans-serif;
}

:any-link {
  color: grey;
  #text-decoration: none;
  cursor:default;
}



*, *:before, *:after {
  box-sizing: border-box;
}

body {
  padding: 20px;
  background-color: grey;
 # max-width: 95%;
 # display: grid;
 # grid-template-columns: 4fr 1fr;
}

ul {
  padding-left: 2em;
  list-style-type: circle;
}

h1, h2, p {
  margin: 0 0 .8em 0;
}

container {
  background-color: black;
  color: grey;
  #max-width: 95%;
  margin: 0 auto;
  #display: grid;
  #grid-template-columns: 4fr 1fr;
  #grid-column-start: 1;
  #grid-column-end: -1;
  #grid-gap: 7px;
}

header {
  font-size: 2em;
  text-align: center;
#  grid-column-start: 1;
#  grid-column-end: -1;
  background-color: black;
  color: grey;
}

.sticky {
  position: fixed;
  top: 10;
  width: 90%;
}

.fixed {
  #position: fixed;
  top:0; left:0;
  #width: 100%; 
}

#.sidebar {
#  background-color: black;
#  color: grey;
#}

aside {
  padding-top: 150px;
  background-color: black;
  color: grey;
}

#container > * {
#  background-color: black;
#  color: grey;
#  border-radius: 3px;
#  padding: 16px;
#}

footer {
  font-size: 1em;
  text-align:  right;
  grid-column-start: 1;
  grid-column-end: -1;
  background-color: black;
  color: grey;
}

#@media (max-width: 800px) {
#  .container {
#    grid-template-columns: none;
#  }
}

