@import url('https://fonts.googleapis.com/css2?family=Silkscreen&family=Bitcount+Prop+Double:wght@100..900&family=Bitcount+Prop+Single:wght@100..900&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Cabin+Sketch&family=Handjet:wght@500&family=Permanent+Marker&display=swap');
#warning-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

#warning-overlay p {
  font-family: 'Silkscreen', sans-serif;
  font-size: 0.8rem;
  opacity: 0.7;
  color: #ffffff;
}

.enter-hotspot {
  width: 100%;
  max-width: 890px;
  height: 700px;
  cursor: url('/graphics/cursors/magic-cursor-pointer.png') 10 0, pointer;
  background-image: url('/suzu/img/SUZU-WARNING.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease-in-out;
}

.enter-hotspot:hover  {
  background-image: url('/suzu/img/SUZU-WARNING-ENTER.png');
}

@media screen and (max-width: 600px) {
  .enter-hotspot { height: 250px; }
}

#start-screen {
  text-align: center;
  margin-top: 20vh;
  display: none;
}

button.story-button {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 15px 30px;
  cursor: url('/graphics/cursors/magic-cursor-pointer.png') 10 0, pointer;
  font-size: 1.5rem;
  font-family: 'Silkscreen', sans-serif;
  transition: background-color 0.6s ease;
}

button.story-button:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

#typedtext {
  display: none;
  padding: 2%;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: 'Silkscreen', sans-serif;
  text-align: center;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 800px;
  margin: 0 auto;
}

#typedtext::-webkit-scrollbar { display: none; }
#typedtext { -ms-overflow-style: none; scrollbar-width: none; }

.screen-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

@keyframes wiggle {
  0%   { left: 0px;  top: 0px;  right: 0px;  }
  10%  { left: -2px; top: 0px;  right: -2px; }
  20%  { left: -1px; top: -1px; right: -1px; }
  30%  { left: 0px;  top: 0px;  right: 0px;  }
  40%  { left: 2px;  top: 1px;  right: 2px;  }
  50%  { left: 1px;  top: 2px;  right: 1px;  }
  60%  { left: 0px;  top: 1px;  right: 0px;  }
  70%  { left: -2px; top: 0px;  right: -2px; }
  80%  { left: -1px; top: -1px; right: -1px; }
  90%  { left: 0px;  top: -2px; right: 0px;  }
  100% { left: 1px;  top: -1px; right: 1px;  }
}

.typy  { position: relative; animation: wiggle 1.5s linear infinite; }
.typy2 { position: relative; animation: wiggle 5s   linear infinite; }
.typy3 { color: red; position: relative; animation: wiggle 0.5s linear infinite; }

html { height: 100%; box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
h1, h2, h3, p { margin: 0; padding: 0; }

.screen-container {
  position: relative;
  flex: 1;
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  line-height: 0;
}

.screen-container::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 3px 100%;
  z-index: 10;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  h1 { font-size: 2rem; }
  h3 { font-size: 1rem; }
}

@media screen and (max-width: 750px) {
  .topnav a.icon       { background-color: white; }
  .topnav a.icon:hover { color: #a5ace2; }
  .topnav.responsive a { margin-bottom: 0; }
}