/* CSS RESET */

:root {
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

html,
body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#app {
  overflow: hidden;
  width: inherit;
  height: inherit;
}

.carousel__container {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 100svh;
  max-height: 100svh;

  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.carousel__videoContainer {
  position: relative;
  scroll-snap-align: start;
  background: black;
}

.carousel__videoContainer video {
  object-fit: fill;
  position: absolute;
  width: 100%;
  height: 100%;
}
