@import url(//fonts.googleapis.com/css?family=Jersey+20);

html,
body {
    height: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    height: 100vh;
    font-family: "Jersey 20", sans-serif;
}

.fullscreen-video-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;

}

.fullscreen-video-container video {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}


.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg,
            rgba(255, 0, 0, 0.06),
            rgba(0, 255, 0, 0.02),
            rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 30px 100%;
    z-index: 1;
    animation: flicker 100ms infinite;
    pointer-events: none;
}

.text {
    font-size: 15vw;
    color: white;
    margin-bottom: -2.2vw;
}

.subtext {
    font-size: 5vw;
    color: white;
    text-align: center;
}

.social-links {
    font-size: 3.5vw;
    color: white;
    text-align: center;
    margin-top: 4vw;
}

a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: underline;
}

.video-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0) 70%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.cointainer-logo {
    position: relative;
    z-index: 2;
}

@keyframes flicker {
    0% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0px);
    }
}