* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: black;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

#videos-container {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

#videos-container::-webkit-scrollbar {
  display: none;
}

.video-page {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-page video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  background-color: black;
  display: block;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 10vh;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 999;
}
