@charset "UTF-8";



/* @FONT FACE (enable the use of 'custom fonts' inside your document) */

/* 
  You can use 'fontsquirrel' (https://www.fontsquirrel.com) 
  or 'transfonter' (https://transfonter.org)
  to generate your own font for the web from .ttf or .oft files 
*/



@font-face {
  font-family: 'Tagettes';
  src: url('../fonts/TagettesPlus/tagettp2_u-webfont.woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Tagettes';
  src: url('../fonts/Tagettes/tagetts2_u-webfont.woff');
  font-weight: normal;
  font-style: italic;
  font-display: block;
}


@font-face {
  font-family: 'Garamond';
  src: url('../fonts/Garamond/eb-garamond.12-regular-webfont.woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Garamond';
  src: url('../fonts/GaramondItalic/eb-garamond.12-italic-webfont.woff');
  font-weight: normal;
  font-style: italic;
  font-display: block;
}



@font-face {
  font-family: 'Terminal';
  src: url('../fonts/Terminal/terminal-grotesque-webfont.woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}




/* VARIABLES */

:root {
  /* Color values */
  --color-background: rgba(255, 255, 255, 0);
  /* --color-text: rgb(121,125,132); */
  --color-text:rgb(0, 0, 0);
  --color-text-link: rgba(255, 255, 255, 0.8);
  --color-text-link-hover: rgba(96, 96, 96, 0.4);
  /* Font values */
  --font-text: 'JetBrainsMono' ;
  --font-size: 1.875em;
  /* Margin value */
  --margin: 0;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  display: none;
}



/* GENERAL STYLES */

html {
  font: var(--font-size) var(--font-family);
  color: var(--color-text);
  background-color: var(--color-background);
  scroll-behavior: smooth;
  hyphens: auto;
  /* max-width: 100%; */
  scrollbar-width: none;
  /* overflow-x: hidden; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100vw;
  /* outline: 1px solid rgb(0, 255, 0); */
}

main {
  width: 100%;
  margin: var(--nav-height) auto 4rem auto;
}

.header--fixed {
  position: sticky;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0
}

body {
  position:relative;
  background-color: var(--color-background);
  font: var(--font-size) var(--font-family);
  color: var(--color-text);
  width:100%;
  height:auto;
  overflow-y:auto;
  /* overflow-x: hidden; */
  counter-reset: sidenote-counter;
  max-width: 100%;
  -ms-overflow-style: none;

}

a {
  color: var(--color-text-link);
  text-decoration: underline;
}

a:hover {
  color: var(--color-text-link-hover);
  text-decoration: underline;
}

.page-wrapper > header {
  width: 100%;
  height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

h1 {
  font-family: "Tagettes";
  font-style: normal;
  rotate: -5deg;
  color: rgb(255, 255, 255);
  position: fixed;
  top: 16vh;
  width: 100%;
  font-size: 80px;
  text-align: center;
  z-index: 0;
  line-height: 7rem;
  font-weight: normal;
  margin-bottom: 5rem;
  animation: glow 1s ease-in-out infinite alternate;
  opacity: 1; 
  transition: opacity 0.1s ease-out; 
}

/* @keyframes fadeOut {
  0% {
    opacity: 1; 
  }
  100% {
    opacity: 0; 
  }
} */

/* .fade-wrapper {
  animation: fadeOut linear;
  animation-timeline: scroll();
  animation-range: 0 100vh; 
  animation-fill-mode: forwards;
} */

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff;
  }
  
  to {
    text-shadow: 0 0 10px #fff;
  }
}




/* PAGE STYLES */

/* page structure */

div.page-wrapper {

  padding: var(--margin);
  display:flex;
  width: 100vw;
  /* overflow-x: hidden; */
}





#nav {
  position: fixed; 
  top: -50px; 
  width: 100%;
  z-index: 100;
  transition: top 0.5s ease-in-out; 
}

#nav>ul {
  display: flex;
  justify-content: space-between;
  align-items: left;
  list-style: none;
  width: 100%;
  height: var(--nav-height);
  background-color: rgb(0, 0, 0);
  font-family: Terminal;
  font-weight: bold;
  font-size: 1rem;
  padding:0.1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#nav>ul>li a {
  text-decoration: none;
}

#nav>ul>li a:hover {
  text-decoration: underline;
}



.scroll-timeline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 30px;
  display: flex;
  align-items: center;
  z-index: 2;
  background-color: #000000; 
  overflow: hidden; 
}

.timeline-content {
  display: flex;
  align-items: center;
  width: 100%; 
  padding-left: 10px;
  padding-right: 10px; 
  box-sizing: border-box; 
}

.play-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 15px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 12px solid rgba(255, 255, 255, 0.8); 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.dot {
  width: 13px;
  height: 13px;
  background: rgb(210, 74, 78); 
  border-radius: 50%;
  animation: breathing 3.5s infinite ease-in-out, glow3 1s ease-in-out infinite alternate;
  opacity: 0.7; 
}

@keyframes breathing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0; 
  }
  100% {
    opacity: 1;
  }
}

@keyframes glow3 {
  from {
    box-shadow: 0 0 2px 2px rgba(255, 0, 0, 0.6);
  }
  to {
    box-shadow: 0 0 2px 2px rgba(255, 0, 0, 1);
  }
}


.track {
  position: relative;
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.8); 
  display: flex;
  align-items: center;
}

.track::before,
.track::after {
  content: "";
  position: absolute;
  width: 2px; 
  height: 12px; 
  background: rgba(255, 255, 255, 0.8);
}

.track::before {
  left: 0; 
}

.track::after {
  right: 0; 
}

.progress-marker {
  position: absolute;
  width: 2px; 
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  left: 0%; 
  transform: translateX(-50%); 
  transition: left 0.1s linear;
}

.progress-bar {
  height: 6px; 
  background: rgba(255, 255, 255, 0.8);
  width: 0%; 
  transition: width 0.1s linear; 
}

.clock {
  font-family: Terminal;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px; 
  white-space: nowrap;
}


/* content */

.live-feed {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  object-fit: cover;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: -10; 
  clip-path: inset(0 0 0 0);
  overflow-x: hidden;
}

div.empty{
  /* border: solid;
 border-color: blue; */
  /* z-index: 3; */
  width:100vw;
  height:130vh;
  flex-direction: column;
}


div.thesis-content{
  background-color: rgb(250, 244, 244);
  z-index: 1;
  width:100vw;
  height:auto;
  box-shadow: 0 0 60px 60px rgb(250, 244, 244);
  padding-bottom: 100px; 
}



.is-chapter{
  width:100vw;
  height:auto;
  padding-left:calc( (100vw - 50vw) / 2);
  padding-right:calc( (100vw - 50vw) / 2);
  box-sizing: border-box;
  z-index: 1;
  
}

.is-chapter p{
  text-align: justify;
  text-justify: inter-character;
  font-weight: bold;
  font-family: Garamond;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
  color: rgb(121, 125, 132);
}


h2{
  font-family: Tagettes;
  font-weight: bold;
  font-size: 2rem;
  padding-top: 50px;
  padding-bottom: 2rem;
  /* padding-left: 2rem; */
  text-align: center;
  /* color:white; */
  color: rgba(210, 74, 79, 0.478);
  /* color: rgb(121,125,132); */
  position: sticky; 
  top: 10px;
  z-index: 1;
  width:100vw;
  /* margin-bottom:calc(0px - (min(50px, 3vw) * 2)); */
  margin-left: calc(0px - ((100vw - 50vw) / 2));
  animation: glow2 1s ease-in-out infinite alternate;
  text-decoration:underline 3px;
}


.bibliography p{
  text-align: left;
  text-justify: inter-character;
  font-weight: bold;
  font-family: Garamond;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
  color: rgb(121, 125, 132);
}

.firstletter{
  font-family: Tagettes;
  font-size: 1rem;
}




.sidenote,
.marginnote {
  display: none;
  font-family: Terminal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  background-color: black;
  line-height: 0.9rem;
  z-index: -1;
  margin: 20px;
}

.margin-toggle:checked + .sidenote {
  display: block;
  float: left;
  left: 1rem;
  clear: both;
  width: 95%;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  margin: 1rem 2.5%;
  margin-left: -0.2rem;
  vertical-align: baseline;
  /* position: relative; */
  margin: 30px;
}

.sidenote-wrapper {
  /* Optional: reset counter if it was previously applied */
  counter-reset: none;
}

.sidenote-number {
  display: inline;
  cursor: pointer;
  position: relative;
  font-family: Terminal, monospace;
  color: rgb(210, 74, 78);
  font-size: 0.7rem !important;
  vertical-align: super;
  font-weight: bold;
}

.sidenote-number:hover {
 text-decoration: underline; 
  color: rgba(96, 96, 96, 0.4);
 
}

label.margin-toggle:not(.sidenote-number) {
  display: none;
}

input.margin-toggle {
  display: none;
}






.image-center{
  display: flex;
  flex-direction: column;
  align-items: center; 
  
  text-align: center;
  width: 50vw;
}

figcaption {
  display: block;
  max-width: 100%;
  font-family: Terminal;
  font-size: 0.8rem;
  background-color: black;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  padding: 0rem;
  text-align: left;
  margin-top: 0.2rem; 
  box-sizing: border-box;
}

.image-container {
  display: inline-block;
  border: 0.2rem solid black;
  background-color: black; 
  /* box-shadow: 0px 0px 0.1rem 0.1rem rgb(0, 0, 0); */
  margin: 0;
  padding: 0;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(100%) grayscale(100%);
  transition: filter 0.3s ease; 
  margin: 0;
  padding: 0;
}

.image-container img:hover, 
.image-container img:active { 
  filter: none;
}



.image-center-two{
  display: flex;
  flex-direction: row;  
  justify-content: center; 
  align-items: center; 
  gap: 1rem; 
  text-align: center;
  width: 50vw;
  flex-wrap: wrap; 
}



.image-container img.sheep {
  width: 17rem !important;
  height: auto;
}

.image-container img.mamagoat {
  width: 15rem !important;
  height: auto;
}

.image-container img.ysengrimus {
  width: 10rem !important;
  height: auto;
}

.image-container img.bigbadwolf {
  width: 12rem !important;
  height: auto;
}

.image-container img.nazi {
  width: 12rem !important;
  height: auto;
}

.image-container img.kolham {
  width: 24rem !important;
  height: auto;
}

.image-container img.ursula {
  width: 15rem !important;
  height: auto;
}

.image-container img.waterwolf {
  width: 15rem !important;
  height: auto;
}

.image-container img.wildcam {
  width: 25rem !important;
  height: auto;
}

.image-container img.livestream {
  width: 25rem !important;
  height: auto;
}

.image-container img.practicalpig {
  width: 25rem !important;
  height: auto;
}

.image-container img.basket{
  width: 20rem !important;
  height: auto;
  filter: none;
}















.abstract{
  margin-bottom: 200vw;
}


.blockquote {
  display: block; 
  margin-left: 0.5rem; 
  padding-left: 0.5rem;
  margin-right: 0.5rem; 
  padding-right: 0.5rem; 
  text-align: center;
  font-family: Tagettes;
  font-weight: bold;
  line-height: 1.9rem;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  
  justify-content: space-between;
  align-items: center;
  background-color: rgb(0, 0, 0);
  font-family: Terminal;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  box-sizing: border-box;
  z-index: 1000;
  opacity: 0; 
  gap: 0.5rem;

  padding-right: 0.5rem; 
  padding-left: 0.5rem; 

  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  transition: opacity 0.3s ease-in-out; 
}

/* Make footer visible */
/* .footer.show {
  opacity: 1;
} */




@keyframes glow2 {
  from {
    text-shadow: 0 0 3px #ff0000;
  }
  
  to {
    text-shadow: 0 0 3px #ff0000;
  }
}

h3{
  text-align: center;
  font-family: Terminal;
  font-size: 1rem;
  font-weight: bolder;
  font-style: bold;
  color:rgb(121, 125, 132);
  z-index: 100;
}





/* UTILITY CLASSES */

/* hide desktop mobile etc */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}





/* WEBSITE MEDIA QUERIES */

/* responsive typeface for various breaking points, sets the default 'rem' value */
@media (max-width: 299px) { :root{--font-size: 18px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 299px) and (max-width: 340px) { :root{--font-size: 19px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 340px) and (max-width: 440px) { :root{--font-size: 20px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 441px) and (max-width: 779px) { :root{--font-size: 19px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 780px) and (max-width: 992px) { :root{--font-size: 20px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 993px) and (max-width: 1200px) { :root{--font-size: 21px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 1201px) and (max-width: 1320px) { :root{--font-size: 22px;} html, body {font: var(--font-size) var(--font-text); } }
@media (min-width: 1321px) { :root{--font-size: 24px;} html, body {font: var(--font-size) var(--font-text); } }

/* styles for 'mobile', screen sizes up to 779px, should covers 'mobile' and 'tablet' */
/* style this one first and then use the subsequent ones in a cascading way (from general to specific) */

@media (max-width: 779px) {

  /* your 'mobile' overriding css properties here */

  @media (max-width: 779px) {

    /* Mobile layout adjustments */
    html, body {
      display: block;
       overflow-x: hidden;
    }




    .is-chapter {
      padding: 1rem;
      text-align: left;
    }
  
    .image-aside-right, .image-aside-left {
      position: relative;
      display: block;
      float: left;
      width: 100%;
      margin: 0;
      padding: 1rem 0;
      box-sizing: border-box;
    }
  
    /* Utility classes */
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  
    h1 {
      font-family: "Tagettes";
      font-style: normal;
      rotate: -5deg;
      color: rgba(255, 255, 255, 0.8);
      position: fixed;
      top: 34vh;
      width: 100%;
      font-size: 35px;
      font-weight: bold;
      text-align: center;
      z-index: 0;
      line-height: 4rem;
      font-weight: normal;
      margin-bottom: 5rem;
      animation: glow 1s ease-in-out infinite alternate;
      opacity: 1;
      
     
    }
  
    h2 {
      font-family: Tagettes;
      font-weight: bold;
      font-size: 1.8rem;
      padding-top: 1rem;
      padding-bottom: 2rem;
      text-align: center;
      color: rgba(210, 74, 79, 0.8);
      position: sticky !important;
      top: 4vh;
      z-index: 1; 
      width: 100%;
      margin: 0 auto;
      animation: glow2 1s ease-in-out infinite alternate;
      text-decoration: underline 3px;
    }
  
  
    #nav > ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      list-style: none;
      width: 100%;
      height: var(--nav-height);
      background-color: rgb(0, 0, 0);
      font-family: Terminal;
      font-weight: bold;
      font-size: 0.8rem;
      padding: 0.4rem 0.4rem;
      flex-wrap: wrap;
      line-height: 0.5rem;
      gap: 0.2rem;
    }
  
   
    .image-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 90vw;
    }
  
    .image-container {
      display: block;
      width: 100%;
      margin: 0 auto;
      padding: 0;
    }
  
    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      filter: invert(100%) grayscale(100%);
      transition: filter 0.3s ease;
      margin: 0 auto;
    }
  
   
    .image-container img.sheep,
    .image-container img.mamagoat,
    .image-container img.ysengrimus,
    .image-container img.bigbadwolf,
    .image-container img.nazi,
    .image-container img.kolham,
    .image-container img.ursula,
    .image-container img.waterwolf,
    .image-container img.wildcam,
    .image-container img.livestream,
    .image-container img.practicalpig {
      width: 100% !important;
      height: auto;
    }
  
    .image-container img.basket {
      width: 100% !important;
      height: auto;
      filter: none;
    }
  
    .image-center-two {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      text-align: center;
      width: 100%;
      flex-wrap: wrap;
    }
  
 
    .footer {
      bottom: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      background-color: rgb(0, 0, 0);
      font-family: Terminal;
      font-weight: 600;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.8);
      padding: 0.25rem 0.5rem;
      box-sizing: border-box;
      z-index: 1000;

      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      flex-direction: column;
    }

  
  }
  





/* use this query to apply style changes to smaller smartphones sizes (like an iPhone 5S or SE 2016), max size of 339px */

@media (max-width: 339px) {

  /* your overriding css properties here */

}



/* use this query to apply style changes for 'mobile' screen sizes that are flipped in 'landscape' mode */

@media (max-width: 779px) and (orientation: landscape) {

   /* your overriding css properties here */

}



/* use this query to apply style for 'small' desktop screens */

@media (min-width: 780px) and (max-width: 992px) {

  /* your overriding css properties here */

}
}