/* ************************************************************
   Fonts: import external css on "export"
   ************************************************************ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@font-face {
  font-family: "rock_saltregular";
  src: url("../fonts/rock_salt/RockSalt-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ************************************************************
   Globals
   ************************************************************ */
:root {
  /* Colors */
  --color_1: #2E9AFE;
  /* blue */
  --color_2: #F79F81;
  /* salmon */
  --color_3: #848484;
  /* dark gray */
  --color_4: #F2F2F2;
  /* light gray */
  --color_5: #1A1A1A;
  /* charcoal */
  --color_6: #000000;
  /* black */
  --color_7: #FFFFFF;
  /* white */
  /* Font families */
  --font_fam_1: "rock_saltregular";
  --font_fam_2: "Montserrat", "HelveticaLight", "Helvetica Light", Helvetica, Arial, sans-serif;
  /* Borders & Shapes */
  --radius: 6px;
  /* --circle: 50%;*/
  /* Effects */
  /*    --animation: 1.0s;*/
  --transition: .5s ease;
  /* <property> <duration> <timing-function> <delay> */
  /*--shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.2);*/
  /* 0 4px 8px 0 rgba(0, 0, 0, 0.08), 0 6px 20px 0 rgba(0, 0, 0, 0.06); */
  /* offset-x | offset-y | blur-radius | spread-radius | color */
}

/* ************************************************************
   HTML Tags
   ************************************************************ */
html {
  background-color: var(--color_5);
  color: var(--color_4);
  font-family: var(--font_fam_2);
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  white-space: nowrap;
}

body {
  position: relative;
  background-color: var(--color_1);
  width: 100%;
  /*max-width: 1200px;*/
  margin: auto;
  margin-bottom: 0px;
  padding: 0px;
  white-space: normal;
}

a {
  transition: color var(--transition);
  text-decoration: none;
}

a, a:link, a:visited {
  color: var(--color_5);
}

a:hover, a:active, a.active {
  color: var(--color_2);
}

/*a img, a:link img, a:visited img { border: 1px solid var(--color_1); }
  a:active img, a:hover img, a.active img { border: 1px solid var(--color_2); }*/
p {
  /*margin-top: 15px;
  margin-bottom: 40px;*/
  color: var(--color_5);
}

h1 {
  animation-name: header_icon_fade_in;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  color: var(--color_4);
  font-family: var(--font_fam_1);
  font-size: 52px;
  opacity: 0;
}

@keyframes header_icon_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h2 {
  color: var(--color_1);
  font-family: var(--font_fam_1);
  font-size: 30px;
  line-height: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /*border-radius: var(--radius);

  width: fit-content;

  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;*/
}

ul {
  list-style-type: none;
  /* Remove bullets */
  margin: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
}

li {
  color: var(--color_5);
  font-size: 18px;
  text-indent: -20px;
  margin-bottom: 2px;
  padding: 2px 8px;
  padding-left: 22px;
}

li::before {
  content: "+";
  color: var(--color_1);
  padding-right: 10px;
}

.sub-ul {
  margin-top: 6px;
}

.sub-ul li {
  padding-left: 20px;
}

.sub-ul li::before {
  color: var(--color_2);
}

header {
  position: sticky;
  top: 0px;
  z-index: 3;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: var(--color_5);
  margin: 0px;
  padding: 20px;
}

header a, header a:link, header a:visited {
  color: var(--color_4);
  font-family: var(--font_fam_1);
}

header a:hover, header a:active, header a.active {
  color: var(--color_2);
}

header li {
  display: inline-block;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  padding-top: 22px;
  padding-left: 50px;
}

header li::before {
  content: "";
}

main {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

section {
  background-color: var(--color_4);
  border-bottom: 1px solid var(--color_5);
  border-radius: var(--radius);
  padding: 40px;
  padding-top: 14px;
  margin-bottom: 160px;
}

section p:last-of-type {
  color: var(--color_5);
  margin-bottom: 10px;
}

img {
  width: 100%;
  padding-top: 40px;
  border-radius: 10px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color_5);
  margin: 0px;
  padding: 40px;
  /*font-family: var(--font_fam_1);*/
  /*font-size: 16px;*/
  background-color: var(--color_5);
}

noscript div {
  padding: 100px;
}

/* ************************************************************
  #ID
  ************************************************************ */
#overview, #features, #usage, #options, #advanced_options {
  scroll-margin-top: 225px;
}

/* ************************************************************
  .Classes
  ************************************************************ */
.desc {
  margin-top: 60px;
}

.desc p {
  font-family: var(--font_fam_1);
  font-size: 22px;
  text-align: center;
  line-height: 40px;
}

.get_burg {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 200px;
}

.get_burg a, .get_burg a:link, .get_burg a:visited {
  background-color: var(--color_5);
  border: 1px solid var(--color_5);
  border-bottom: 1px solid var(--color_2);
  border-radius: var(--radius);
  color: var(--color_4);
  font-family: var(--font_fam_1);
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

.get_burg a:hover, .get_burg a:active, .get_burg a.active {
  border: 1px solid var(--color_2);
  color: var(--color_2);
}

.get_burg li {
  display: inline-block;
  font-size: 20px;
  margin: 20px;
  padding: 0px;
  padding-top: 0px;
  padding-left: 0px;
}

.get_burg li::before {
  content: "";
}

.sr_only {
  position: absolute !important;
  margin: 0px;
  padding: 0px;
  width: 1px;
  height: 1px;
  border: 0px;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px);
  /* maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%);
  /* modern browsers, clip-path works inwards from each corner */
  overflow: hidden;
  white-space: nowrap;
  /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

/*.return_to_top {
  font-size: 44px;
}*/
/* ************************************************************
  @ Media
  ************************************************************ */
@media only screen and (max-width: 800px) {
  nav li {
    display: block;
    text-align: center;
    padding-left: 0px;
  }

  header {
    position: relative;
    flex-direction: column;
    background-color: var(--color_5);
    margin: 0px;
    padding: 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }

  section {
    padding: 14px;
    padding-top: 8px;
  }

  .get_burg {
    flex-direction: column;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
