/* ════════════════════════════════════════════════
   FONTS
════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Caveat:wght@400;600&family=Cinzel+Decorative:wght@700&display=swap');

/* ════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #5a1525; border-radius: 3px; }

/* ════════════════════════════════════════════════
   BODY
════════════════════════════════════════════════ */
html, body {
  height: 100%;
  overflow: hidden;
}

body {
  min-height: 100vh;
  background-image: url('/assets/panic_new_bg.jpg');
  background-position: top;
  background-attachment: fixed;
  cursor: url('https://cdn.cursors-4u.net/previews/toad-mario-fe5d7381-32.webp') 32 32, default;
}

a:hover,
   button:hover {
     cursor: url('https://cdn.cursors-4u.net/previews/toad-mario-world-help-select-969e46e0-32.webp') 38 39, auto;
   }

/* ════════════════════════════════════════════════
   INTRO TEXT
════════════════════════════════════════════════ */
.intro {
  font-family: 'Caveat', cursive;
  font-size: 35px;
  color: #ffffff;
  text-align: center;
  position: relative;
  top: 35%;
  line-height: 1.0;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 11px;
  z-index: 3;
}