/* RESET */
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
  margin-block-end: 0;
}
ol[role="list"],
ul[role="list"] {
  list-style: none;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}
button,
h1,
h2,
h3,
h4,
input,
label {
  line-height: 1.1;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}

/* FONTS */

@font-face {
  font-family: "Li-Ro";
  src:
    url(../fonts/"Li-Ro.woff2") format("woff2"),
    url(../fonts/"Li-Ro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* GLOBALS */

html,
body,
body * {
  cursor: none !important;
}

body {
  background-color: black;
  height: 100vh;
  overflow: hidden;
}

body,
h1,
a,
button,
p {
  font-family: "Li-Ro", serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  color: white;
  margin: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

/*a,
button {
  cursor: default;
}*/

h1 {
  text-transform: uppercase;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: white;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 100;
  display: none;
}

.on-cursor .custom-cursor {
  display: block;
}

.custom-cursor.is-hidden {
  opacity: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  mix-blend-mode: difference;
  z-index: 10;
}

nav a:first-child {
  margin-right: 20px;
}

.video-hero {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  position: fixed;
  z-index: 10;
  right: 0px;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  mix-blend-mode: difference;
}

footer :nth-child(1) {
  justify-self: start;
}

footer :nth-child(2) {
  justify-self: center;
}

footer :nth-child(3) {
  justify-self: end;
}

footer p {
  display: inline-block;
  pointer-events: none;
}

#mute-btn {
  text-transform: uppercase;
  padding: 0;
}

@media screen and (max-width: 500px) {
  .mobile-hide {
    display: none;
  }

  footer {
    display: block;
    text-align: center;
  }

  #mute-btn {
    font-size: 12px;
  }
}

@media screen and (orientation: portrait) {
  .video-d {
    opacity: 0;
  }
  .video-m {
    opacity: 1;
  }
}
@media screen and (orientation: landscape) {
  .video-d {
    opacity: 1;
  }
  .video-m {
    opacity: 0;
  }
}

/* VARIABLES */

:root {
}
