* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
html, body {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  }
  @font-face {
      font-family: 'VG5000';
      src:    url('../fonts/VG5000-Regular_web.eot');
      src:    url('../fonts/VG5000-Regular_web.eot?#iefix') format('embedded-opentype'),
              url('../fonts/VG5000-Regular_web.woff') format('woff'),
              url('../fonts/VG5000-Regular_web.woff2') format('woff2'),
              url('../fonts/VG5000-Regular_web.ttf') format('truetype'),
              url('../fonts/VG5000-Regular_web.svg#svgFontName') format('svg');
      font-weight: normal;
      font-style: normal;
  }
  @font-face {
      font-family: 'libre_baskervilleitalic';
      src: url('../fonts/librebaskerville-italic-webfont.woff2') format('woff2'),
           url('../fonts/librebaskerville-italic-webfont.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }
  @font-face {
      font-family: 'libre_baskervilleregular';
      src: url('../fonts/librebaskerville-regular-webfont.eot');
      src: url('../fonts/librebaskerville-regular-webfont.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }
body {
  background-color: black;
  color: white;
  font-family: "libre_baskervilleregular", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
}
/* SITE BACKGROUND IMAGE*/
.bgimg {
  position: relative;
}
.bgimg::after {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: auto;
  background-image: url('frgmnt_20231029-drowned-_1920.jpg');
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: auto;
}
#bgvid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*filter: invert(1);*/
  mix-blend-mode: screen;
  z-index: -1;
}
header {
  width: 100%;
  padding: 5rem;
}
hr {
  height: 10rem;
  border: 0;
  background-color: none;
}
a {
  color: white;
  text-decoration: none;
  }
    a:hover {
      color: black;
      background-color: white;
    }
h1 {
  font-family: "VG5000", Courier, monospace;
  font-weight: normal;
  font-style: normal;
  font-size: 10rem;
  color: white;
  text-align: center;
}
p {text-align: center;}
em {
  font-family: "libre_baskervilleitalic", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.1rem;
}
nav {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
nav a {
  text-decoration: none;
  background-color: none;
  border: 0;
  filter: invert(1);

}
nav a:hover {background-color: transparent; filter: invert(0);}
.list {text-align: center;}
ul li {
  list-style-type: none;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  h1 {font-size: 3rem;}
}
