/* SCROLLBAR */
::-webkit-scrollbar {
    width: 0; /* Largeur de la barre de défilement */
}

::selection {
  background-color: #ffffff15;
}

html {
  scroll-behavior: smooth;
}

/* VIDEO */

.video-section {
  position: relative;
  height: 89vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* CURSOR */
* {
  cursor: url('/assets/cursor/normal.cur'), auto;
}

.button_anim{
  cursor: url('/assets/cursor/link.cur'), auto;
}


input:focus {
  outline: none;
  border: none;
}

header {
  height: 10vh;
}
.mainsection {
  height: 90vh;
}