html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  background: #fff;
  font-size: 125%;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font: normal 1em/1.3 sans-serif;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-feature-settings: "kern", "liga", "onum";
  font-feature-settings: "kern", "liga", "onum";
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 0;
  padding: 2vh 4vw;
}

::-moz-selection {
  color: #000;
  background: #fff;
}

::selection {
  color: #000;
  background: #fff;
}

address {
  font-style: normal;
  max-width: 40em;
  margin-top: 1em;
  padding: 0 5px;
}

address b {
  font-variant: small-caps;
  text-transform: lowercase;
  font-weight: 600;
}

address span,
footer span,
footer a {
  display: block;
}

img,
video,
object {
  max-width: 100%;
  width: auto;
  height: auto;
}

img[src$=".svg"] {
  max-width: none;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.15s;
}

a:hover,
a:focus {
  transition: 0.15s;
  /* opacity: 0.6; */
}

.nav-main {
  text-align: right;
  margin: 2em;
}

.nav-main a {
  margin: 0.5em;
}

.nav-tiles {
  display: flex;
  flex-wrap: wrap;
}
.nav-tiles a {
  display: flex;
  font-weight: bold;
  flex: 1 0 calc(100% - 10px);
  min-height: 15vw;
  background: rgba(255, 255, 255, 0.5) no-repeat center;
  background-size: cover;
  padding: 0.5em;
  text-transform: lowercase;
  font-variant: small-caps;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.nav-tiles a span {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: background-color 0.2s, transform 0.2s;
}

.nav-tiles a:hover span,
.nav-tiles a:focus span {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: none;
  transform: scale(1.2);
}

@media (min-width: 40em) {
  .nav-tiles a {
    flex: 0 0 calc(50% - 10px);
  }
}

footer {
  font-size: 0.8em;
  margin-top: 1em;
  padding: 0 5px;
}

.box {
  list-style: none;
  padding: 0;
}

h1,
h2 {
  font-weight: normal;
}

h1 {
  padding: 0 5px;
}

h2 {
  font-size: 1.2em;
  margin: 1em 0 0.25em;
}

p {
  margin-top: 0;
}

.vanillabox {
  color: rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.vanillabox-title,
.vanillabox-status,
.vanillabox-info {
  font-size: 0.8em;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.75);
}
.vanillabox-title,
.vanillabox-info {
  color: #000;
}
.vanillabox-title {
  top: 0;
  right: auto;
}
.vanillabox-info {
  top: auto;
  bottom: 0;
  left: 0;
  right: 5em;
}

@media (min-width: 50em) {
  address b,
  address span {
    display: inline-block;
    margin-right: 1.6em;
  }
  footer {
    display: flex;
    justify-content: space-between;
  }
  .vanillabox-item {
    padding: 2em;
  }
  .nav-tiles a {
    font-size: 1.2em;
  }
}

@media (orientation: portrait) and (max-width: 50em) {
  .nav-tiles a {
    min-height: 30vw;
}

