@import "https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap";

/* src/styles.scss */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
}
html {
  scrollbar-width: thin;
  scrollbar-color: rgb(42, 100, 116) rgb(45, 45, 45);
}
body {
  font-family: "Nunito", "sans-serif";
  overflow-y: auto;
  background-color: rgba(7, 7, 7, 0.9);
}
.grayGreenBackground {
  background: url("./media/mountain_view_09.jpg") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-bottom: 0vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10vmax;
}
@media only screen and (min-width: 1500px) {
  .grayGreenBackground {
    flex-direction: row;
    padding-top: 5vh;
  }
}
.river_background {
  background: url("./media/background_image2_2.png") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-bottom: 0vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10vmax;
}
@media only screen and (min-width: 1500px) {
  .river_background {
    flex-direction: row;
    padding-top: 5vh;
  }
}
.tux_background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url("./media/linux-256.png") no-repeat fixed;
  background-size: 8%;
  background-position: left;
  min-height: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  margin-top: 0;
}
@media only screen and (min-width: 767px) {
  .tux_background {
    background-size: 10%;
  }
}
@media only screen and (min-width: 992px) {
  .tux_background {
    background-size: 15%;
  }
}
@media only screen and (min-width: 1170px) {
  .tux_background {
    background-size: 20%;
  }
}
.rust_background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url("./media/rust.png") no-repeat fixed;
  background-size: 8%;
  background-position: left;
  min-height: 100%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  margin-top: 0;
}
@media only screen and (min-width: 767px) {
  .rust_background {
    background-size: 10%;
  }
}
@media only screen and (min-width: 992px) {
  .rust_background {
    background-size: 15%;
  }
}
@media only screen and (min-width: 1170px) {
  .rust_background {
    background-size: 20%;
  }
}
pre code {
  display: block;
  color: rgba(195, 195, 195, 0.9);
  background: none;
  background-color: rgba(63, 63, 63, 0.9);
  white-space: pre;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgb(42, 100, 116) rgb(45, 45, 45);
  overflow: auto;
  width: 90%;
  max-width: 95%;
  min-width: 35%;
  margin: auto;
  padding: 0.1rem 0.1rem;
  border-radius: 0.4rem;
  font-size: 0.8rem;
}
@media only screen and (min-width: 992px) {
  pre code {
    font-size: 1rem;
  }
}
.last_pre_on_page {
  margin-bottom: 3vh;
}
code {
  font-family: MyFancyCustomFont, monospace;
  font-size: inherit;
}
p > code,
li > code,
dd > code,
td > code {
  background: rgba(63, 63, 63, 0.9);
  word-break: keep-all;
  word-wrap: keep-all;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.1rem;
  border-radius: 0.2rem;
  font-size: 80%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #BBB;
  text-align: center;
  width: 100%;
}
h1 {
  text-align: center;
  color: #BBB;
  font-size: 5vmin;
}
p {
  color: #BBB;
  font-size: 1.1rem;
}
@media only screen and (min-width: 767px) {
  p {
    font-size: 1.5rem;
  }
}
a {
  cursor: pointer;
  color: rgba(83, 168, 213, 0.8);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: rgba(42, 151, 157, 0.8);
  }
}
mark {
  color: rgba(42, 151, 157, 0.8);
  text-decoration: none;
  background: none;
}
aside {
  text-align: center;
  font-size: 2.3vmin;
  color: rgba(195, 195, 195, 0.9);
}
.container {
  width: 100%;
  margin: 0 auto;
  border-bottom: 0.1rem solid #BBB;
  position: fixed;
  background-color: rgb(50, 50, 50);
  padding-top: 0.5%;
  padding-left: 3%;
  padding-right: 3%;
  z-index: 1;
}
blockquote {
  text-align: center;
  color: rgba(195, 195, 195, 0.9);
  font-size: 2.2vmin;
  padding-left: 12%;
  padding-right: 20%;
  padding-top: 2%;
  padding-bottom: 1%;
}
figcaption {
  color: rgba(195, 195, 195, 0.9);
}
header {
  background: rgba(25, 25, 25, 0.9);
  padding: 0;
}
header nav {
  float: right;
}
header nav ul {
  list-style-type: none;
  margin: 0;
  display: flex;
}
header nav ul li a {
  padding: 1em;
}
header nav ul li a:hover {
  background: rgba(35, 35, 35, 0.9);
}
table {
  padding-top: 1%;
  padding-bottom: 5%;
  font-size: 2vmin;
  max-width: 80%;
  margin: auto;
}
table tr th {
  color: #000;
  text-align: center;
  background-color: rgba(33, 100, 116, 0.8);
  padding: 0.2rem 0.1rem;
}
table tr td {
  color: #BBB;
  text-align: left;
  background-color: rgba(33, 100, 116, 0.8);
  padding: 0.25rem 1rem;
}
table mark {
  color: rgb(95, 125, 175);
}
figure {
  padding-bottom: 5%;
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
figure img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
figure figcaption {
  text-align: center;
  padding-top: 1%;
  font-size: 2vmin;
}
figure ol li {
  color: #BBB;
}
figure ul li {
  color: #BBB;
}
figure ul li:before {
  content: "- ";
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
