body {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0px;
  height: 100vh;
  background-color: #194d5b;
}

a {
  pointer-events: none;
}

.button,
.content a,
.glow, 
.rooms {
  pointer-events: auto;
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: breeze;
  src: url(https://cdn.glitch.global/cfce08e4-b42d-4d8c-ae3e-9ab11d4235e7/Breeze-Regular.otf?v=1710517999344);
}

h1 {
  font-family: "breeze", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0px;
  font-size: 30pt;
}

h2,
summary {
  font-family: "Libre Baskerville", Times, serif;
  font-size: 20pt;
  font-style: italic;
  font-weight: normal;
  margin: 0px;
}

h3 {
  font-family: "Libre Baskerville", Times, serif;
  font-size: 15pt;
  font-style: italic;
  font-weight: normal;
  margin: 0px;
}

p {
  font-family: "Libre Baskerville", Times, serif;
  line-height: 2;
  margin: 0px;
  font-size: 12pt;
}

.popup a {
  color: #f2f2f2;
  font-style: italic;
}

a:hover,
.popup a:hover,
.button:hover {
  color: #919e5c;
}

.overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  visibility: hidden;
  opacity: 0;
  margin: 0px;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 0px;
  padding: 20px;
  color: #f2f2f2;
  background-color: #194d5b;
  width: 100%;
  position: relative;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 200;
  min-width: 300px;

  border: 1px solid #f2f2f2;
}

.popup hr {
  border: none;
  border-bottom: 1px solid #f2f2f2;
  margin: 0px;
}

.popup h2 {
  margin-top: 0;
}

.popup .close {
  position: absolute;
  top: 5px;
  right: 20px;
  margin: 0px;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #f2f2f2;
  font-style: normal;
}

.popup .content {
  max-height: 30%;
  overflow: auto;
}

.svg-container {
  display: absolute;
  height: 100vh;
  align-items: center;
}

svg {
  display: block;
  margin: 0 auto;
  height: 100vh;
}

a {
  transition: 2s;
  text-decoration: none;
  color: #194d5b;
}

svg text .center {
  text-anchor: middle;
  dominant-baseline: middle;
}

.glow {
  animation: blink 4s infinite;
  -webkit-animation-name: blink;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

text {
  font-size: 15pt;
}

#Layer_2 .label {
  background: #194d5b;
  padding: 10px;

  font-family: "Libre Baskerville", serif;
  fill: #f2f2f2;
  font-style: italic;
  font-weight: normal;
  border: 1px solid #f2f2f2;
  text-align: center;
}

@-webkit-keyframes blink {
  0% {
  }

  50% {
    fill: #277a90;
  }

  100% {
  }
}

.off {
  pointer-events: none;
  cursor: default;
}

#box {
  color: #194d5b;
  z-index: 100;
  font-size: 35pt;
  float: right;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;

  position: fixed;
  top: 0;
  left: 0;
}

.horizontal {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-style: italic;
  color: #f2f2f2;
  font-family: "Libre Baskerville", Times, serif;
  font-size: 18px;
  z-index: 1;
  opacity: 0;
  animation: time 10s;
}

@keyframes time {
  0% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 800px) {
  #box {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
  }

  #box a {
    color: white;
  }

  .popup {
    margin: 20px auto;
    padding: 15px;
    width: 90vw;
    max-height: 80vh;
    z-index: 200;
    min-width: 200px;
  }

  .overlay {
    background: rgba(242, 242, 242, 0);
  }

  svg {
    height: 70%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
