@charset "UTF-8";

:root {
  /* Font values */
  --font-family: 'Times New Roman', serif;
  --font-size: 24px;
  --space-m: 1rem;
  --pink: rgb(255, 0, 157);

  --font-size-s: 0.8rem;

}

::selection {
  color: var(--pink);
  background: rgba(0, 0, 0, 0.99);
}

/* GENERAL STYLES */

html, body {
  height: 100%; /* or min-height: 100vh; */
  margin: 0;
  padding: 0;
}



html {
  font-size: var(--font-size);
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: white;
}

p {
  margin: 0;  
  padding: 0; 
  line-height: 1.3;   
  cursor:text;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

a {
  color: var(--color-text-link);
  text-decoration: none;
  line-height: 1;
  color: var(--pink);
}

li {
  list-style:none;
}

h1{
  text-align: center;
  margin-top:var(--space-m);
  transition: transform 0.2s ease;
  user-select:none;
}

/* Shake effect on hover */
h1:hover {
  animation: shake 0.5s ease-in-out;
  color:var(--pink);
  cursor: url('cursor.png') 10 10, auto;
}
/* Keyframes for the shake animation */
@keyframes shake {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: 10deg;
  }
  50% {
    rotate: -10deg;
  }
  75% {
    rotate: 10deg;
  }
  100% {
    rotate: 0deg;
  }
}

img {
  user-select:none;
}
h2{
  text-align: center;
  color: var(--pink);
  margin:3rem 0;
  cursor: url('cursor.png') 10 10, auto;
  user-select:none;
}
.section {
  scroll-margin-top: var(--space-m);
}

.section p {
  text-indent:var(--space-m);
}
.section p:first-of-type {
  text-indent:0;
}
.noindent {
  text-indent: 0 !important;
}

h3{
  /* h3 style */
  text-align: center;
}

footer{
  color: var(--pink);
  margin-bottom:var(--space-m);
}

footer p {
  color: var(--pink);
  text-indent:var(--space-m);
  word-break: break-all;
}

footer:hover p {
  color: black;
  cursor:default;
}

footer p:hover {
  color: var(--pink);
}

div.page-wrapper {
  margin: 0 auto;
  max-width: 51ch;
}

.credits {
  text-align:center;
  font-size:var(--font-size-s);
  margin:2rem 0;
  color:var(--pink);
  cursor: url('cursor.png') 10 10, auto;

}
 
.navigation {
position: fixed;
top: var(--space-m);
left: var(--space-m);
font-size: var(--font-size-s);
user-select:none;
font-weight: bold;

}

.navigation a {
  display:block;
  cursor: url('cursor.png') 10 10, auto;

}
.navigation a:hover, .navigation a.active {
  color:black;
}

figcaption {
  word-break:break-all;
  font-size:var(--font-size-s);
}

.pink {
  color:var(--pink);
}


.footnote-ref {
  text-decoration: none;
  color: var(--pink);
  cursor: pointer;
}
/* Initially hide the sidenotes */
.sidenote {
  color: var(--pink);
  display: none;
  font-size: var(--font-size-s);
  padding-left: 2rem;
  text-indent:0;
}


#mobilerat {
display:none;
}


@media only screen and (max-width: 820px) {
  html {
    font-size: 18px;
  }
  body {
    padding: 0 5%;
  }
  
.navigation {
  position: relative;
  text-align: center;
  left:auto;
  top:auto;
  margin-top:3rem;
  font-size:1rem;

}
.navigation a {
  line-height:1.2;

}
#mobilerat {
  display:block;
  position: absolute;
  width: 30px; /* Change size of the image */
  height: 30px;
  touch-action: none; /* Prevent default mobile gestures */
  pointer-events: none; /* Prevent image from blocking touch events */
}
}