@font-face {
  font-family: iAWriterDuospace;
  src: url(../fonts/iAWriterDuospace-Regular.ttf);
}

body {
  font-family: iAWriterDuospace;
  margin: 0px;
  overflow: hidden;
  cursor: none !important;
}

* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;

  box-sizing: border-box;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: black;
}

/* ------- UI Elements ---------- */
.navigationLine {
	background-color:#fff;
	pointer-events:none;
	position:fixed;
}

#verticalLine {
	height: 100%;
	width: 1px;
	z-index: 100;
  /* transform: translate(-50%,-50%); */
}

#horizontalLine {
	width: 100%;
	height: 1px;
	z-index: 100;
  /* transform: translate(-50%,-50%); */
}

.title h3 {
  position: fixed;
  top: 20px;
  left: 75px;
  color: white;
  margin-top: 0px;
  text-decoration: underline;
}

.button h3 {
  position: fixed;
  top: 20px;
  right: 73px;
  color: white;
  margin-top: 0px;
  /* text-decoration: underline; */
}

a {
  cursor: none;
}

.button h3:hover {
  animation: epilepticText .1s infinite alternate linear;
}

/* -------- Mouse image ----------- */
.tracker {
  position: absolute;
  /* z-index: 100; */
}

.tracker img {
  position: absolute;
  top: calc(50% - 240px);
  left: calc(50% - 240px);
}

img {
  filter: grayscale(100%);
  mix-blend-mode: exclusion;
}

/* --------- Text ---------- */
.text {
  padding: 10px;
  position: fixed;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  overflow: auto;

  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;

  -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
  -moz-column-gap: 40px; /* Firefox */
  column-gap: 40px;

  -webkit-column-rule: 1px solid white; /* Chrome, Safari, Opera */
  -moz-column-rule: 1px solid white; /* Firefox */
  column-rule: 1px solid white;

  border-width: thin;
}

.text h3 {
  color: white;
  margin-top: 0px;
  text-decoration: underline;
}

.text p {
  margin-top: 0px;
  text-align: justify;
  color: white;
}

/* ----------- Scrollbar styles ------------ */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
border: 1px solid white;
}

::-webkit-scrollbar-thumb {
background: white;
}

::-webkit-scrollbar-thumb:hover {
background: #88ba1c;
}

/* -------------------------------- */
@keyframes epilepticText {
  0% {
    color: white;
  }
  100% {
    color: black;
  }
}
