@keyframes draw
{
  0% {stroke-dasharray: 0 400; stroke-dashoffset: 200;fill-opacity:0;stroke-width: .5;}
  37% {stroke-dasharray:200 0; stroke-dashoffset: 200;fill-opacity: 0;stroke-width: .5;}
  50% {fill-opacity: 1;stroke-width: 0;}
  100% {fill-opacity: 1;stroke-width: 0;}
}
@keyframes bg {
  0% { fill-opacity: 0; opacity: 0;}
  37% { fill-opacity: 0; opacity: 0;}
  100% { fill-opacity: 1; }
}
@keyframes rest {
  0% { fill-opacity: 0; opacity: 0;}
  37% { fill-opacity: 0; opacity: 0;}
  100%  { fill-opacity: 1; opacity: 1;} 
}
@keyframes hsMove {
  0% { transform: translateX(0); } 
  20% { transform: translateX(-200px); } 
  100% { transform: translateX(-200px); } 
}

@keyframes goMove {
  0% { transform: translateX(0); } 
  20% { transform: translateY(200px); } 
  100% { transform: translateY(200px); } 
}
.draw {
  animation: draw 10000ms ease-in-out forwards;
  stroke: #f0512a;
}
.page-break-before {
  page-break-before: always;
}
body {
  background-color: #fff;
}
.page-after::after {
  content: "";
  display: block;
  height: 1.5vh;
}
h1 {
  font-size: 1.5rem;
  line-height: 1;
}
h1 a {
  color: #f0512a;
}
h1 a:hover {
  text-decoration: underline;
}

.landscape {
  animation: bg 10500ms ease-in-out forwards;
  position: fixed;
  /* bottom: 0;
  # left: 0; */
  width: 100%; /* Make it full width */
  pointer-events: none; /* Allows clicking through the SVG */
  fill-opacity: 1;
}
.default {
  opacity: 0;
  animation: rest 10500ms ease-in-out forwards;
  fill-opacity: 1;
}
.hw {
  bottom: -5%;
  left: 0;
  z-index: -1;
}
.go {
  left: 0;
  z-index: 1;
  bottom: -5%;
}

.orange-bg {
  background-color: rgba(206,68,59. .5);
}

.orange-text {
  color: #f0512a;
}

.amber-bg {
  background-color: rgba(221, 143, 51, .5);
}
.amber-text {
  color: #dd8f33;
}
.faded-bg {
  background: linear-gradient(to bottom, rgb(221, 143, 51, .2), rgb(206,68,59, .2));
}