body {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden; }

header {
  position: fixed;
  padding: 10px 30px;
  bottom: 120px;
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 200;
  height: fit-content;
  background-color: transparent; }
  header h1 {
    display: inline;
    font-size: 24px;
    line-height: 42px;
    color: white;
    text-shadow: 1px 1px 1px #333;
    font-family: ff-nexus-mix, sans-serif;
    font-weight: 700;
    font-style: normal; }
    header h1 span {
      font-size: 16px;
      font-family: ff-nexus-mix, sans-serif;
      font-weight: 400;
      font-style: normal;
      color: #555; }

main {
  position: relative;
  display: block;
  grid-column: 1/2;
  grid-row: 1/2;
  height: 100vh; }

#slideshow {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0px; }

#slideshow > div {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px; }
  #slideshow > div figure {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0; }
    #slideshow > div figure img {
      position: relative;
      display: block;
      grid-column: 1/2;
      grid-row: 1/2;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    #slideshow > div figure figcaption {
      position: fixed;
      bottom: 10px;
      grid-column: 1/2;
      grid-row: 1/2;
      z-index: 300;
      padding: 10px 20px;
      text-align: right;
      right: 0; }
      @media screen and (min-width: 640px) {
        #slideshow > div figure figcaption {
          bottom: 40px; } }
      #slideshow > div figure figcaption h2 {
        display: inline;
        font-size: 14px;
        line-height: 24px;
        color: white;
        text-shadow: 1px 1px 1px #333;
        font-family: ff-nexus-sans, sans-serif;
        font-weight: 700;
        font-style: normal; }
        @media screen and (min-width: 640px) {
          #slideshow > div figure figcaption h2 {
            font-size: 16px; } }
      #slideshow > div figure figcaption p {
        display: inline;
        font-size: 14px;
        line-height: 35px;
        background-color: white;
        font-family: ff-nexus-sans, sans-serif;
        font-weight: 400;
        font-style: normal; }

footer {
  position: fixed;
  display: block;
  grid-column: 1/2;
  grid-row: 1/2;
  top: 20px;
  right: 0; }
  footer a {
    position: relative;
    display: block;
    width: auto;
    _background-color: white;
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 1px #333;
    padding: 0px 20px;
    padding-right: 20px;
    font-family: ff-nexus-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 35px; }
    footer a:hover {
      text-decoration: underline; }

.break {
  position: relative;
  display: block;
  clear: both; }

/*# sourceMappingURL=style.map */