*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


@font-face {
  font-family: 'Heebo';
  src: url('/static/fonts/Heebo-VariableFont_wght.ttf');
}

@keyframes blinker {
  50% {
    opacity: 20%;
    transform: scale(0.9);
  }
}

html
{
  font-size: 100%;
}

body
{

  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: 'Heebo';
  font-stretch: normal;
}

.executiveSummary
{
  margin-top: 3rem;
  border-radius: 1.5rem;
  width: 95%;
  border-width: 0.5rem;
  border-style: solid;
  border-color: #f5f5f5;
  background: rgb(255,255,255);
  filter: drop-shadow(0 0 0.1rem grey);
  display: flex row;
  align-items: center;
  justify-content: center;
}

.ESheading
{
  margin: 3rem 0;
  font-size: 5rem;
  margin-left: 2rem;
  font-variation-settings: 'wght' 800;
  color: black;
  display: flex;
  align-items: flex-start;
}

.Subheading
{
  margin: 1rem 0 0 2rem;
  display: inline-block;
  /*display: flex;*/
  align-items: flex-start;
  font-size: 3rem;
  font-variation-settings: 'wght' 400;
  color: #3d3d3d;
  border-bottom: 0.3rem solid #3d3d3d;
  padding: 0.1rem 1.5rem;
}

.lines
{
  font-size: 2.5rem;
  margin: 1rem 3rem 0 4rem;
  font-variation-settings: 'wght' 300;
  color: black;
}

.jumpToResults
{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jumpToButton
{
  font-family: 'Heebo';
  text-decoration: none;
  font-size: 2.7rem;
  padding: 2rem 3rem 2rem 3rem;
  margin: 2rem;
  font-variation-settings: 'wght' 500;
  color: black;
  border-radius: 2rem;
  outline:none;
  transition: 0.2s;
  align-self: center;
  justify-content: center;
  background : rgba(76, 209, 55,0.5);
  color : rgba(0, 148, 50,1.0);
  outline: none;
  border: none;
  cursor: pointer;
}

.theStory
{
  margin-top: 12rem;
  width: 95%;
  border-left: 0.3rem solid rgba(76, 209, 55,0.5);
  display: flex row;
  align-items: center;
  justify-content: center;
}

.storyHeading
{ 
  display: flex;
  align-items: flex-start;
  font-size: 7rem;
  margin-left: 1rem;
  font-variation-settings: 'wght' 900;
  color: black;
  background: white;
}


.section
{
  border-left: 0.3rem solid #d5d5d5;
  margin: 6rem 0 6rem 1.5rem;
  display:flex row;
  align-items: flex-start;
}


.storySubheading
{
  display: flex;
  align-items: flex-start;
  margin-top: 1rem;
  margin-left: 1.5rem;
  font-size: 4rem;
  /*line-height: 4.5rem;*/
  font-variation-settings: 'wght' 900;
  color: black;
}

.smallerAsset
{
  width:50%;
  height:auto;
}

.sectionBeginning
{
  margin-top: 3.5rem;
  display: flex;
  align-items: flex-start;
  background: white;
}

.storyLines
{
  font-size: 2.5rem;
  margin: 1rem 3rem 0 1.5rem;
  font-variation-settings: 'wght' 300;
  color: black;
  list-style-type:none;
}

.storyLines li
{
  margin: 2rem 0;
}

.highlight
{
  font-variation-settings: 'wght' 600;
  color: black;
  background: rgba(241, 196, 15,0.5);
  border-radius: 1.5rem;
  padding: 0.2rem 0.5rem;
}

.deliverableSection
{
  margin: 3rem 1.5rem;
  border-radius: 1.5rem;
  width: 95%;
  border-width: 0.5rem;
  border-style: solid;
  border-color: #ffda79;
  background: rgb(255,255,255);
  display: flex row;
  align-items: center;
  justify-content: center;
}

.deliverableSection > a
{
  text-decoration: none;
}


.resultsButton
{
  font-family: 'Heebo';
  text-decoration: none;
  font-size: 2.7rem;
  padding: 2rem 3rem 2rem 3rem;
  margin: 2rem;
  font-variation-settings: 'wght' 500;
  color: black;
  border-radius: 2rem;
  outline:none;
  transition: 0.2s;
  align-self: center;
  justify-content: center;
  background : #ffda79;
  color : #fa8231;
  borderWidth : '1px';
  outline: none;
  border: none;
  cursor: pointer;
}

.navBack
{
  display: flex;
  align-items: center;
  justify-content: center;
  position:fixed;
  bottom:4rem;
  gap:2rem;
  z-index: 3;
}

.goBackButton
{
  border-color: #c0392b;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  height: 10rem;
  width: 10rem;
  border-width: 0.5rem;
  border-style: solid;
  filter: drop-shadow(0 0 0.1rem grey);
  padding: 1.5rem;
  transition: 0.2s;
}

footer
{
    display: flex;
    justify-content: center;
    align-items: center;
}

p.authorCard
{
  width: 100%;
  font-variation-settings: 'wght' 400;
  font-size: 2rem;
  text-align: center;
  color: rgba(9, 133, 227,1);
  margin-bottom:20rem;
}

.blinkerClass
{
  animation: blinker 4s infinite;
}

.authorCard > a
{
  color: inherit;
  text-decoration: none;
}

p.authorCard:hover
{
  color: black;
  transition: 0.2s;
  font-variation-settings: 'wght' 900;
  animation: none;
}

p.rotatePrompt
{
  display: none;
  position: absolute;
  width: 100%;
  font-family: 'Heebo';
  font-variation-settings: 'wght' 400;
  font-size: 2rem;
  text-align: center;
  color: white;
  bottom:11vh;
}

@media
only screen and (orientation:landscape) and (max-device-height:500px) and (-webkit-min-device-pixel-ratio: 2)
{
  .executiveSummary, .theStory, .authorCard, .navBack
  {
    display: none;
  }
  body
  {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,1)!important;
    background-image: url('/static/rotatedevice/rotate.gif')!important;
    background-position: center!important;
    background-size: 25%!important;
    background-repeat:no-repeat;
  }
  p.rotatePrompt
  {
    display: block;
  }
}

@media screen and (max-device-width:600px)
{
  .smallerAsset
  {
    margin-left: 10rem;
  }
  .storyHeading
  {
    position: sticky;
    top: 0rem;
    z-index: 1;
  }
  .sectionBeginning
  {
    position: sticky;
    top: 9.7rem;
  }
  .storySubheading
  {
    flex: 1 1 30%;
  }
  .smallerAsset
  {
    flex: 1 1 60%;
  }
}

@media screen and (min-device-width:600px)
{
  html
  {
    font-size: 50%;
  }
  .smallerAsset
  {
    max-width: 200px;
    margin-left: 10rem;
  }
  .executiveSummary
  {
    max-width: 600px;
  }
  .theStory
  {
    max-width: 800px;
  }

  .storyLines
  {
    margin-left: 3.5rem;
    list-style-type: circle;
  }

  .highlight
  {
    border-radius: 1rem;
    padding: 0 0.5rem;
  }

  .navBack
  {
    align-self: flex-start;
    position:fixed;
    bottom:4rem;
    left: 4rem;
    gap:2rem;
    z-index: 3;
  }

  .goBackButton
  {
    border-radius: 25%;
    height: 7rem;
    width: 7rem;
    border-width: 0.5rem;
    padding: 1rem;
    align-self: flex-start;
  }

  .deliverableSection
  {
    max-width: 40vw;
  }
}
