:root {
  --blue: rgb(36, 54, 255);

  --gold: #745d25;

  --filter-height: 2.5rem;
}

@font-face {
    font-family: "Varianz Sans";
    src: url("./VZWOVARIANZ-LowSansRegular.otf") format("opentype");
}

@font-face {
    font-family: "Varianz Mix";
    src: url("./VZWOVARIANZ-MidMixRegular.otf") format("opentype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100vw;
  overflow-y: hidden;
  transition: .25 ease;
  font-size: 24px;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Varianz Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  width: auto;
  margin-bottom: 10px;
  padding-bottom: 20px;
  margin-top: -20px;
  border-bottom: 1px solid var(--blue);
  overflow-wrap: break-word;
  transition: .25s ease;
  line-height: 1;
}

li a:hover {
    color: rgb(36, 54, 255);
}

.bold {
    font-family: "Varianz Mix", sans-serif;
    color: rgb(36, 54, 255);
    margin-top: 10px;
    margin-left: 20px;
    font-size: 50px;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1000;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

#main-structure {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  color: var(--gold);
  mix-blend-mode: color-dodge;
}

#left {
  flex: 1 1 47vw;
  height: 100vh;
  overflow: hidden;
}

#entries {
  flex: 1 1 47vw;
  position: relative;
  height: 103vh;
  overflow-y: auto;
  padding-bottom: 50px;
  padding-top: 20px;
  border-top: 1px solid rgb(36, 54, 255);

}

#entries li {
    padding-left: 10px;
    padding-right: 20px;
}

#entries section {
  width: 100%;
}

.heading {
  font-family: "Varianz Sans", sans-serif;
  font-size: 50px;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--gold);
  margin-top: -10px;
}


.author,
.medium {
  font-size: 15px;
  line-height: 1;
  color: rgb(36, 54, 255);
}

.medium {
  padding
}

.title-link {
  color: #745d25;
  text-decoration: none;
  transition: ease-in-out 0.2s;
  font-family: "Varianz Mix", sans-serif;
  padding-top: 20px;
}


.hover-text {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 400px;
  padding: 20px;
  background-color: var(--blue);
  color: var(--color2);
  font-size: 16px;
  line-height: 1.2;
  pointer-events: none;
  text-transform: lowercase;
}

.hover-text.is-visible {
  display: block;
}

#filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 14px;
  margin-bottom: 20px;
}

#filter a {
  width: 80px;
  text-align: center;
  transition: ease-in-out 0.3s;
}

#filter a:hover {
  cursor: pointer;
  color: var(--gold);
}

#filter a[selected] {
  font-weight: bold;
  color: var(--gold);
}

a {
    transition: .25s ease;
}


@media (max-width: 1080px) {
  #main-structure {
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    padding-bottom: calc(var(--filter-height) + env(safe-area-inset-bottom));
  }

  #left {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }

  #entries {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
  }

  #entries section {
    width: 90%;
    margin-left: 10px;
  }

  .heading {
    font-size: 50px;
  }

}

@media (max-width: 600px) {
#entries {
    margin-bottom: 50px;
}
.hover-text {
  display: none !important;
}

#entries li {
    overflow-y: hidden;
}

}