@font-face {
  font-family: 'Arial Black';
  src: url("data/Arial_Black.ttf");
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  font-family: 'Arial Black', Arial, Helvetica, sans-serif;
  background-color: #fab8ae;
  letter-spacing: -0.08rem;
}

#container {
  width: 100vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 25% 25% 25%;
      grid-template-columns: 25% 25% 25% 25%;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
      grid-template-areas: 'header header header header' 'carousel carousel carousel carousel' 'main-text main-text main-text main-text' 'highlights highlights highlights .' 'statues statues statues statues' 'map map map map' 'reminder reminder reminder reminder' 'footer footer footer footer';
  overflow: hidden;
}

.text {
  font-size: 2rem;
  line-height: 2rem;
  padding: 0.5rem;
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: header;
  margin-top: 90px;
}

#carousel {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: carousel;
  width: 100vw;
  margin-top: 2rem;
}

#carousel img {
  width: 100%;
  height: auto;
}

#main-text {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: main-text;
  margin: 1rem 0;
}

#highlights {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: highlights;
  overflow: hidden;
}

#statues {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: statues;
  background-color: white;
  padding: 1rem 0;
  list-style-type: decimal-leading-zero;
}

#statues #statues-with {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

#statues ol {
  padding-left: 5rem;
}

#statues ol li {
  list-style-position: outside;
  margin-right: 1rem;
  cursor: pointer;
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari, Opera */
  /* Firefox */
  break-inside: avoid;
  /* IE 10+ */
}

#statues .statue-content p.statue-year {
  padding-bottom: 1rem;
}

#statues .statue-content .statue-picture {
  width: 100%;
  height: auto;
}

#statues .statue-content .statue-description {
  font-size: 1.3rem;
  line-height: 1.3rem;
  letter-spacing: -0.05rem;
  padding: 0.5rem 0;
  margin-right: 1rem;
}

#custom-map {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: map;
  display: block;
}

#custom-map #map {
  width: 100vw;
  height: 40vh;
}

#reminder {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: reminder;
  font-size: 4.8rem;
  line-height: 4.2rem;
  letter-spacing: -0.2rem;
}

#reminder .reminder-link {
  padding: 1rem 0.5rem;
  background-color: #fab8ae;
  border-top: 1px solid black;
}

#reminder a,
#reminder a:visited,
#reminder a:active {
  color: black;
  text-decoration: none;
}

#reminder .more-info {
  margin: 0 0.5rem;
}

#reminder .more-info h1 {
  font-size: 4.8rem;
  line-height: 4.2rem;
  letter-spacing: -0.2rem;
  margin: 1rem 0;
}

#reminder .more-info p {
  font-size: 1.3rem;
  line-height: 1.3rem;
  letter-spacing: -0.05rem;
  padding-bottom: 1rem;
}

#reminder .more-info img {
  width: 100%;
  margin-top: 1rem;
}

#reminder .more-info .location-info p {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari, Opera */
  /* Firefox */
  break-inside: avoid;
  /* IE 10+ */
}

footer {
  -ms-grid-row: 8;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: footer;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.3rem;
  letter-spacing: initial;
}

footer .col {
  float: left;
  padding: 0.5rem;
  width: calc(100% - 1rem);
}

footer img {
  display: block;
  margin: auto;
  padding: 0.5rem;
  width: 75%;
}

footer a,
footer a:visited,
footer a:active {
  color: white;
}

footer a:hover {
  text-decoration: none;
  color: #fab8ae;
}

footer .small-text {
  border-top: 1px solid white;
}

#scroll-arrow {
  display: none;
}

#exit {
  position: fixed;
  z-index: 10;
  top: 15px;
  right: 15px;
  font-family: 'Arial Black';
  color: #000;
}

#exit svg {
  float: right;
  width: 65px;
  height: 65px;
}

#exit p {
  float: right;
  text-align: right;
  font-size: 35px;
  margin-right: 10px;
}

#exit:hover p {
  color: #fff;
}

@media only screen and (orientation: portrait) and (min-width: 768px) {
  html {
    font-size: 24px;
  }
  footer img {
    display: inline-block;
    width: 45%;
  }
}

@media only screen and (orientation: landscape) {
  #container {
        grid-template-areas: 'header header header header' 'highlights highlights highlights highlights' 'carousel carousel carousel carousel' 'main-text main-text main-text main-text' 'statues statues statues statues' 'map map map map' 'reminder reminder reminder reminder' 'footer footer footer footer';
  }
  header {
    width: 100vw;
    height: 80vh;
    margin-top: 0;
  }
  #carousel {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  #carousel img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  #highlights {
    height: 20vh;
  }
  #highlights #highlights-container {
    width: 100%;
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
  }
  #highlights #highlights-container img {
    height: 20vh;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1;
  }
  #highlights #highlights-container .stretch {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0;
  }
  #statues .statue-title:hover {
    color: #fab8ae;
  }
  #statues .statue-content .statue-picture {
    max-height: 750px;
    max-width: 100%;
    width: auto;
  }
  #statues .statue-content .statue-description {
    font-size: 1rem;
    line-height: 1rem;
  }
  #reminder .reminder-link:hover {
    background-color: black;
  }
  #reminder .reminder-link:hover a {
    color: #fab8ae;
  }
  #reminder a:hover {
    color: #fab8ae;
  }
  #reminder .more-info p {
    font-size: 1rem;
    line-height: 1rem;
  }
  #reminder .more-info img {
    max-width: 960px;
  }
  #custom-map #map {
    height: 80vh;
  }
  footer {
    font-size: 0.8rem;
    line-height: 0.8rem;
    padding-top: 0.5rem;
  }
  footer .col {
    padding: 0.5rem;
  }
  footer img {
    display: inline-block;
    margin: auto;
    padding: 0.5rem;
    width: 35%;
  }
  footer .small-text {
    padding: 0.5rem;
  }
}

@media only screen and (orientation: landscape) and (min-width: 960px) {
  #statues #statues-list {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
  #reminder .exhibition-info,
  #reminder .location-info {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
  #reminder .exhibition-info img,
  #reminder .location-info img {
    display: none;
  }
  #scroll-arrow {
    display: block;
    z-index: 10;
    bottom: 0px;
    left: calc(50% - 50px);
    position: fixed;
  }
  #scroll-arrow svg {
    width: 100px;
  }
}

@media only screen and (orientation: landscape) and (min-width: 1200px) {
  html {
    font-size: 32px;
  }
  footer img {
    padding: 0.5rem;
    width: 25%;
  }
}
/*# sourceMappingURL=style.css.map */