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

html, body{
    width:100%;
    height:100%;
    background:#000;
    overflow-y:scroll;
    scroll-snap-type:y mandatory;
    font-family:Arial;
}

#feed{
    width:100%;
}

.film{
    position:relative;
    width:100%;
    height:90vh;
    scroll-snap-align:start;
    overflow:hidden;
    background:#000;
}

.video{
    width:100%;
    height:90%;
    object-fit:cover;
    background:#000;
}



.panel{
    position:absolute;
    left:10px;
    right:10px;
    bottom:15px;
    width:auto;
}


.licznik{
    font-size:28px;
    margin-bottom:15px;
}
.panel form{
    margin-bottom:10px;
}



.panel input[type=text]{
    width:100%;
    height:55px;
    font-size:18px;
    padding:15px;
    border:none;
    border-radius:12px;
    margin-bottom:10px;
}

.panel button{
    width:100%;
    height:55px;
    font-size:20px;
    border:none;
    border-radius:12px;
    background:#ff0050;
    color:#fff;
}

.komentarze{
    width:100%;
    max-height:180px;
    overflow-y:auto;
    font-size:18px;
    padding:15px;
}