* {
    margin: 0;
    padding: 0;
    border: 0;
}

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

body {
    background-color: #000!important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoWrapper {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 1920px) {
    .videoWrapper {
        max-width: 90%;
    }
}


.ambilightWrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

#video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

#ambilight {
    filter: blur(80px) opacity(0.5) saturate(300%) brightness(120%);
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: scale(1.3) translateZ(0);
    width: 100%;
    z-index: -1;
    height: 100%;
    
}
.container-btn{
    position: absolute;
    left: 0;
    top: 0;
    min-width: 450px;
}


.btn-header{
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px 20px;
    background: linear-gradient(-45deg, #0027D1, #0027D1, #010519, #0027D1, #0027D1, #0027D1);
    background-size: 500% 500%;
    animation: gradient 40s linear infinite;
    z-index: 153453135431;
    color: white;
    text-decoration: none;
    letter-spacing: 1.1px;
    transition: all 0.2s;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.btn-header:hover{
    color: white;
    background-size: 300% 300%;
    opacity: 0.9;
}