@charset "UTF-8";

@font-face {
    font-family: 'akkuratregular';
    src: url('../fonts/akkurat-webfont.woff2') format('woff2'),
         url('../fonts/akkurat-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'luisblack';
    src: url('../fonts/luis-black-webfont.woff2') format('woff2'),
         url('../fonts/luis-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: yellow;
    overflow: hidden;
}

.video-container {
    height: 100%;
    width: auto;
    position: relative;
}

.video-container video {
    height: 150%;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
}



#button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter:blur(20px);
     border-radius: 20px;
     border:2px solid white;
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: fixed;
    z-index: 1;
    left: 50%;
    top:51%;
    transform: translate(-50%,-50%);
    padding: 2rem;
    font-family: 'luisblack';
    color: yellow;
    font-size: 5vw;
    text-align: center;
}

#button:hover {
    
    background-color: yellow;
    color: black;
    transition: 0.2s ease-in-out;
}

@media screen and (min-width: 400px){
 #button {
    font-size: 5vh;
}
}