@import url("https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Delicious+Handrawn&family=Patrick+Hand&display=swap');

:root {
  /* --main-bg-color: burlywood; */
  --main-bg-color: #c0583f;
  /* --main-bg-color: #EB8360; */
  /* --main-bg-color: #EB8360; */
  --logoPage-bg-color: darkslateblue;
  --camera-roll-gap: 50px;
  --camera-roll-image-width: 300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Reddit Sans";
  line-height: 25px;
}

body {
  background-color: var(--main-bg-color);
  overflow-x: hidden;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

.fullPage {
  height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
}

.logoPage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background-color: var(--logoPage-bg-color); */
  background-color: black;
}

/* .logoPage::before {
  animation: bounce 1.5s ease infinite;
  bottom: 80px;
  color: #fff;
  content: "╲╱";
  font-size: 2rem;
  font-weight: 800;
  height: 4rem;
  left: 50%;
  letter-spacing: -1px;
  line-height: 4rem;
  margin-left: -3rem;
  opacity: 0.8;
  position: absolute;
  text-align: center;
  width: 6rem;
  z-index: 900;
} */

.arrow {
  animation: bounce 1.5s ease infinite;
  bottom: 80px;
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  height: 4rem;
  left: 50%;
  letter-spacing: -1px;
  line-height: 4rem;
  margin-left: -3rem;
  opacity: 0.8;
  position: absolute;
  text-align: center;
  width: 6rem;
  z-index: 990;
  user-select: none;
  cursor: pointer;
}

@keyframes bounce {
  50% {
    transform: translateY(-20%);
    color: rgba(255, 255, 255, 0);
  }
}

#backgroundVideo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

@media only screen and (max-width: 768px) {
  #backgroundVideo {
    left: 48%;
  }
}

@media only screen and (max-width: 768px) and (min-height: 750px) {
  #backgroundVideo {
    left: 47%;
    /* transform: translate(-50%, -50%) scale(0.95); */
  }
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  z-index: 990;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.reelPage {
  padding: 20px;
  /* background-color: #CAC9CA; */
  background-color: var(--main-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  /* transform: translate(0, -60px); */
}

.reelPage h1 {
  font-size: 60px;
  text-align: center;
  margin: 20px 0;
}

#homeReel {
  min-height: 800px;
  height: 100%;
  width: 100%;
  margin: 40px 0;
}

@media (max-width: 768px) {
  #homeReel {
    min-height: 300px;
    margin:0;
  }
}
