html{
    margin: 0;
    padding: 0;
    background-color:#0E0D1C;
    overflow: hidden;
}

#stop{
    width: 10%;
    height: 10%;
    display:absolute;
    position: absolute;
    z-index:3;
    top:0;  
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    font-size: 2vh;
    color: white;
    background-color: #1E2142;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    transition:all 0.4 ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    
}

#stop:hover {
    box-shadow: 2px 2px 10px 10px rgba(38, 45, 116, 0.2);
}


video{
    transform: scaleX(1.3);
    width: 100%;
    height: 100%;
    display:absolute;
    position: absolute;
    z-index:2;
    top:0;  
    left:0;
    right:0;
    bottom:0;
    margin:auto;
}