body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    color:#fff;
}

video#main-video, #gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video scales properly */
    z-index: -1; /* Places video behind other content */
}

#playground {
    position: relative;
    z-index: 1; /* Ensures content appears above video */
    max-width:100%;
    padding:25px;
    width:530px;
    margin:0 auto;
    padding-top:60px;
    text-align:center;
}

.result{
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 150px;
}

#playground .logo-holder img{
    max-width:100%;

}

.promt-form{
    padding-top:150px;
    padding-left:50px;
    padding-right:50px;
}
.promt-form .form-group{
    margin-bottom:25px;
}

.player-block{
    margin-bottom:25px;
}


.text-right{
    text-align:right !important;
}

.warning{
    font-size: 12px;
    font-style: italic;
    text-align: justify;
    line-height: 13px;
}

body #gif{
    display:none;
}


#gif-mode #main-video{
    display:none;
}

#gif-mode #gif{
    display:block;
}

#gif{

    background:url('../img/video-bg.gif') no-repeat center;
    background-size:cover !important;
}

#gif img{
    margin-top:-25px;
    width:100%;
}