/*
 * ---------------------------------------
 * General
 * ---------------------------------------
 */
 html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
body {
  font-feature-settings: "salt";
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}

main {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
}

video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fullscreenbtn {
  position: absolute;
  left: 0%;
  top: 0%;
  background: #fff;
  color: #000;
  z-index: 2;
}
