/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@font-face {
  font-family: 'blood';
  src: url('fonts/blood.otf');
}
@font-face {
  font-family: 'bub';
  src: url('fonts/bub.ttf');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    width: 100%;
    height: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}






#crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px; /* Adjust the height to make it a proper crosshair */
}

#crosshair::before,
#crosshair::after {
    content: '';
    position: absolute;
    background-color: white;
}

#crosshair::before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

#crosshair::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Adjustments for responsive resizing */
@media (max-width: 600px) {
    #crosshair {
        width: 10px; /* Adjust width for smaller screens */
        height: 10px; /* Adjust height for smaller screens */
    }
}


#App {
  text-align: center;
  height: 100%;
  display: none;
}
body {
  background-color: black;
  overflow: hidden;
}
.lost {
  letter-spacing: 2px;
  color: white;
  margin: 20px auto;
  width: 100%;
  font-size: 100px;
  font-family: "Permanent Marker";
  animation: bloody 4s ease infinite alternate;
  -webkit-animation: bloody 4s ease infinite alternate;
  -moz-animation: bloody 4s ease infinite alternate;
  -o-animation: bloody 4s ease infinite alternate;
  color: white;
  padding-top: 100px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin: auto;
}
@keyframes bloody {
  0% {
    text-shadow: 0px 1px 3px #c8102e;
    letter-spacing: -0.025em;
  }
  100% {
    text-shadow: 0px 5px 3px #c8102e, 0px 10px 3px #c8102e, 0px 15px 3px #c8102e,
      0px 20px 3px #c8102e, 0px 25px 3px #c8102e, 0px 30px 3px #c8102e,
      0px 35px 3px #c8102e, 0px 40px 3px #c8102e, 0px 45px 3px #c8102e,
  }
}
.note {
  color: #c8102e;
  font-size: 80px;
  margin: 0 auto;
  font-family: "Permanent Marker";
  animation: grow 5s ease infinite alternate;
  -webkit-animation: grow 5s ease infinite alternate;
  -moz-animation: grow 5s ease infinite alternate;
  -o-animation: grow 5s ease infinite alternate;
}
@keyframes grow {
  0% {
        transform: scale(1, 1);
  }
  100% {
        transform: scale(1, 1.25);
  }
}
.container {
  position: relative;
  margin: 25px auto;
  height: 400px;
  width: 350px;
}
.blooddrop {
  position: relative;
  width: 11px;
  height: 11px;
  top: 0px;
  margin: 0;
  background-color: #c8102e;
  border-radius: 50%;
  animation: drip 3s cubic-bezier(1,0,.91,.19) infinite ;
    -webkit-animation: drip 3s cubic-bezier(1,0,.91,.19) infinite;
    -moz-animation: drip 3s cubic-bezier(1,0,.91,.19) infinite;
    -o-animation: drip 3s cubic-bezier(1,0,.91,.19) infinite;
}
.blooddrop:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 23px solid #c8102e;
  top: -20px;
  left: 1px;
}
.blooddrop:nth-of-type(1) {
    position: absolute;
    left: 20px;
    top: 0px;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(2) {
    position: absolute;
    left: 53px;
    top: 0px;
    animation-delay: 3s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(3) {
    position: absolute;
    left: 80px;
    top: 0px;
    animation-delay: 4s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(4) {
    position: absolute;
    left: 15px;
    top: 0px;
    animation-delay: 5.5s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(5) {
    position: absolute;
    left: 130px;
    top: 0px;
    animation-delay: 4.5s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(6) {
    position: absolute;
    left: 172px;
    top: 0px;
    animation-delay: 3.2s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(7) {
    position: absolute;
    left: 222px;
    top: 0px;
    animation-delay: 4.8s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(8) {
    position: absolute;
    left: 245px;
    top: 0px;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(9) {
    position: absolute;
    left: 280px;
    top: 0px;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
.blooddrop:nth-of-type(10) {
    position: absolute;
    left: 300px;
    top: 65px;
    animation-delay: 2.2s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}
@keyframes drip {
  0% { top: 70px; }
  100% { top: 600px; }
}
#loading-screen {
    position: fixed;
    font-family: blood, sans-serif;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #c8102e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #c8102e;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
