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

html,
body {
  height: 100%;
  width: 100%;
  color: whitesmoke;
}
html main,
body main {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right bottom, rgb(39, 38, 38), rgb(59, 54, 54), rgb(30, 29, 29));
}
html main section,
body main section {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
html main section .all-reels,
body main section .all-reels {
  height: 850px;
  width: 450px;
  border-radius: 20px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  border: none;
  background: transparent;
  position: relative;
}
html main section .all-reels::-webkit-scrollbar,
body main section .all-reels::-webkit-scrollbar {
  display: none;
}
html main section .all-reels .reel-card,
body main section .all-reels .reel-card {
  height: 850px;
  width: 100%;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(88, 86, 86, 0.8);
  scroll-snap-align: start;
}
html main section .all-reels .reel-card:last-child,
body main section .all-reels .reel-card:last-child {
  margin-bottom: 0;
}
html main section .all-reels .reels,
body main section .all-reels .reels {
  height: 100%;
  width: 100%;
}
html main section .all-reels .reels video,
body main section .all-reels .reels video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html main section .all-reels .bottom,
body main section .all-reels .bottom {
  height: 150px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: transparent;
}
html main section .all-reels .bottom .bottom-top,
body main section .all-reels .bottom .bottom-top {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
}
html main section .all-reels .bottom .bottom-top .profileimage,
body main section .all-reels .bottom .bottom-top .profileimage {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
html main section .all-reels .bottom .bottom-top .profileimage img,
body main section .all-reels .bottom .bottom-top .profileimage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html main section .all-reels .bottom .bottom-top .username,
body main section .all-reels .bottom .bottom-top .username {
  font-size: 15px;
  font-weight: bold;
  font-family: "Gill Sans", Calibri, sans-serif;
  cursor: pointer;
}
html main section .all-reels .bottom .bottom-top button,
body main section .all-reels .bottom .bottom-top button {
  padding: 5px 10px;
  border-radius: 5px;
  background: transparent;
  color: white;
  border: 1px solid whitesmoke;
  font-size: 18px;
  cursor: pointer;
}
html main section .all-reels .bottom .description,
body main section .all-reels .bottom .description {
  padding: 10px;
  display: flex;
  align-items: center;
}
html main section .all-reels .bottom .description p,
body main section .all-reels .bottom .description p {
  font-size: 20px;
  font-family: "Gill Sans", Calibri, sans-serif;
  font-weight: bold;
}
html main section .all-reels .right,
body main section .all-reels .right {
  position: absolute;
  right: 12px;
  bottom: 30%;
  transform: translateY(60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
html main section .all-reels .right .right-icons .like,
html main section .all-reels .right .comment,
html main section .all-reels .right .share,
html main section .all-reels .right .menu,
body main section .all-reels .right .right-icons .like,
body main section .all-reels .right .comment,
body main section .all-reels .right .share,
body main section .all-reels .right .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.95;
}
html main section .all-reels .right .right-icons .like .red,
html main section .all-reels .right .comment .red,
html main section .all-reels .right .share .red,
html main section .all-reels .right .menu .red,
body main section .all-reels .right .right-icons .like .red,
body main section .all-reels .right .comment .red,
body main section .all-reels .right .share .red,
body main section .all-reels .right .menu .red {
  color: rgb(191, 22, 22);
}
html main section .all-reels .right i,
body main section .all-reels .right i {
  font-size: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  cursor: pointer;
  transition: 0.2s ease;
}
html main section .all-reels .right span,
body main section .all-reels .right span {
  font-size: 18px;
  margin-top: 4px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}/*# sourceMappingURL=style.css.map */