* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: essonnes-display,serif;
  font-weight: 400;
  font-style: normal;
}
html
{
  height: 100%;
  overflow:hidden
}
body
{
  margin: 0;
  padding: 0;
}
.container {
  display: flex;
  align-items: left;
  justify-content: left;
}
.navbar {
  overflow: hidden;
  background-color: #000;
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 999;
  align-items: baseline;
  vertical-align: top;
}

.navbar a {
  float: left;
  display: flex;
  color: #f2f2f2;
  text-align: center;
  position: top;
  padding: 2vh;
  text-decoration: none;
  justify-content: center;
}

.navbar a:hover {
  background: #ddd;
  color: black;

}
.section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 5px #000;
}
.wrapper
{
  color: rgb(233, 215, 199);
  margin: 0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.parallax
{
  box-sizing: border-box;
  min-height: 95vh;
  padding: 30vw 0 5vw;
  position: relative;
  transform-style: inherit;
  width: 100vw;
  font-family: "B612";

}
.parallax h1
{
  margin-top: -100px;
  background: #000000;
  width: 100vw;
}
.parallax, .parallax:before
{
  background: 40% 60% / cover;
}
.parallax::before
{
  background-attachment: fixed;
  bottom: 0;
  content: "";
  left:0;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background-image: url(../img/TreeStump.jpg);
  background-size: cover;
  z-index: -1;  
  min-height: 100vh;
}
.parallax::after
{
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.parallax * 
{
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
  padding: 1em 0;
}

.bg2::after 
{
  background-image: url('../img/ShadowedOutside.jpg');
}
.static 
{
  background: #000;
  font-size: 1.5em;
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 5px #000;
  text-align: left;
  height: 50vh;
  font-family: 'Poppins', sans-serif;
}


/* --- Headline --------------------------------------------------------------
   Three stacked lines. `.parallax *` sets `padding: 1em 0` on every
   descendant, which is far too much between lines, so the spans override it. */
.headline
{
  overflow-wrap: break-word;
}
.headline span
{
  display: block;
  /* Each of the three stays on exactly one line. The min() below shrinks the
     text on narrow viewports instead of letting it wrap or overflow. */
  white-space: nowrap;
  padding: 0.12em 0;
}
.headline__name
{
  font-size: min(1.15em, 4.6vw);
}
.headline__role
{
  font-size: min(0.9em, 3.2vw);
}

/* --- Tools -----------------------------------------------------------------
   One item per line, left aligned as a block, the block itself centred. */
.tools
{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.tools li
{
  padding: 0.3em 0;
  letter-spacing: 0.1em;
}
.tools li::before
{
  content: "\2022";
  padding-right: 0.7em;
}

/* The list is taller than the old single run of bullets, so let the section
   grow rather than clipping at a fixed 50vh. */
.static
{
  height: auto;
  min-height: 50vh;
  padding: 2em 0;
}

@media only screen and (max-width:749px) 
{
  * 
  {
    font-size: small;
    background-attachment: inherit;
  }

  /* The headline used to overflow the viewport as one unwrapped line. */
  .parallax
  {
    padding: 40vw 0 5vw;
  }
  .headline__name
  {
    font-size: min(1.1em, 5vw);
    letter-spacing: 0.12em;
  }
  .headline__role
  {
    /* 'AI Technical Solutions Engineer' is the longest line by far; at 0.2em
       tracking it came within 15px of the edge on a 320px screen. */
    font-size: min(0.95em, 4.2vw);
    letter-spacing: 0.08em;
  }
  .tools li
  {
    padding: 0.4em 0;
  }
}
