:root{
  --color1: #ffffff;
  --color2: #CC0000;
  --color2a: #CC000055;
  --color3: #4D4D4D;
  --color3a: #4D4D4D4D;
  --color3b: #4D4D4D33;
  --color4: #000000;
  --color5: #c3c3c3;
}
html, body{
  font-family: "Open Sans";
  color: var(--color3);
}
a{
  color: var(--color2);
  text-decoration: none;
}
a:hover{
  color: var(--color2);
  text-shadow: 0px 0px 3px var(--color3);
}
.image{
  max-width: 100%;
}
.image-wrapper{
  display: flex;
  flex-direction: column;
}
.image-wrapper.center{
  align-items: center;
}
h2,h3,h4{
  color: var(--color4);
  margin-top: 0.8rem;
  margin-bottom: 20px;
}
figcaption{
  text-align: center;
  font-style:italic;
}
#jumpToContent{
  position: fixed;
  bottom: .5rem;
  right: .5rem;
  z-index: 99;
  border-radius: 100%;
  background-color: var(--color3b);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .35;
}
#jumpToContent>img{
  width: 1rem;
  max-height: 1rem;
  filter: invert(32%) sepia(1%) saturate(0%) hue-rotate(70deg) brightness(91%) contrast(94%);
}
#jumpToContent:hover{
  background-color: var(--color2a);
  opacity: 1;
}
#jumpToContent:hover>img{
  filter: invert(14%) sepia(87%) saturate(4050%) hue-rotate(354deg) brightness(87%) contrast(119%);
}
article{
  border-bottom-color: lightslategray;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  padding: 40px 0px;
}
header {
  background: var(--color2);
  color: var(--color1);
  border-bottom: solid .15rem #971212;
  width: 100%;
  text-align: center;
  min-height: 2rem;
  line-height: 2rem;
  font-size: 14px;
  padding: 0 .2rem;
}
header>a {
  color: var(--color4);
  text-shadow: -2px 0px var(--color1);
  font-weight: bold;
  text-decoration: none;
}
header>a:hover{
  color: var(--color1);
  text-shadow: 0px 0px 3px var(--color3);
}
footer{
  text-align: center;
  min-height: 2rem;
  font-size: 14px;
  border-top: solid 3px var(--color2)
}
.footer-wrapper:first-child{
  padding: .5rem 0 0 0;
}
.footer-wrapper:last-child{
  padding: 0 0 .5rem 0;
}

/* Tablet */
@media screen and (min-width: 768px){
  section>.flexwrapper{
    display: flex;
  }
  section>.flexwrapper>p{
    max-width: calc(50% - 1rem);
    margin: 0 .5rem;
  }
  section>.flexwrapper>figure{
    max-width: calc(50% - 1rem);
    margin: 0 .5rem;
  }
  section>.flexwrapper.switch-order>p{
    order: 2;
  }
  section>.flexwrapper.switch-order>figure{
    order: 1;
  }
  body{
    text-align: justify;
  }
  header,
  footer{
    min-height: 3rem;
    line-height: 3rem;
    font-size: 1.1rem;
  }
  .footer-wrapper{
    display:inline;
  }
}