* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

html,
body {
    height: 100%;
    width: 100%;
}

main {
    height: 100%;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to right bottom, rgb(26, 26, 26), rgb(30, 30, 30), black);
    /* overflow: auto; */
    /* overflow: hidden; */
}

section {
    height: 100%;
    width: 350px;
    background-color: black;
    border-radius: 10px;
    margin: auto;
    /* overflow: hidden; */
}

.all-reels {
    height: 100%;
    width: 100%;
    overflow: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.all-reels::-webkit-scrollbar{
    display: none;
}

.reel {
    height: 100%;
    width: 100%;
    position: relative;
    background-color: rgb(94, 94, 94);
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;

}

.reel video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.reel .bottom {
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.906));
    position: absolute;
    bottom: 0;

}

.bottom .user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bottom .user img {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.bottom>h3 {
    font-weight: 500;
    font-size: 20px;
}

.bottom .user h4 {
    font-size: 15px;
}

.bottom .user button {
    background-color: transparent;
    padding: 2px 4px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid white;

}

.right {
    width: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(-10%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.right i{
    font-size: 30px;
    font-weight: lighter;
}

.right h4{
    /* background-color: red; */
    cursor: pointer;
}

.right h6{
    font-size: 10px;
    /* font-weight: lighter; */
}

.right>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.love{
    color: red;
}