* {
    box-sizing: border-box;
}

@font-face {
    font-family: Sneak Mono;
    src: url("fonts/Sneak-Mono.otf") format("opentype");
}

@font-face {
    font-family: Untitled-Sans;
    src: url("fonts/UntitledSans-Regular.otf") format("opentype");
}

h1 {
    font-family: 'Untitled-Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin: 1rem;
    mix-blend-mode: difference;
    z-index: 1;
    color: #969696;
}

.container {
    /* height: 84vh; */
    width: 100%;
    display: flex;
}

.intro {
    max-width: 480px;
}

#reel__video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
}

video {
    border-radius: 16px;
}

.button {
    display: flex;
    justify-content: center;
    z-index: 1;
    position: absolute;
    margin: 1em;
    bottom: 1em;
}

button {
    padding: 1em 2em;
    cursor: pointer;
    color: #969696;
    background-color: #fff;
    border: solid 1px #969696;
    border-radius: 80px;
    font-family: 'Sneak Mono', sans-serif;
    /* transition: 0.4s ease-in-out; */
}

button:hover {
    padding: 1em 2em;
    cursor: pointer;
    color: #fff;
    border: solid 1px rgba(0, 0, 0, 0);
    border-radius: 80px;
    font-family: 'Sneak Mono', sans-serif;
    background: linear-gradient(270deg, #e2cc06, #ba1313, #211de2);
    background-size: 600% 600%;

    -webkit-animation: bgColor 3s ease infinite;
    -moz-animation: bgColor 3s ease infinite;
    animation: bgColor 3s ease infinite;
    transition: 0.4s ease-in-out;
}


@media screen and (max-width: 1000px) {

    h1{
        margin: 1em;
        font-size: 1em;
    }
}


@-webkit-keyframes bgColor {
    0%{background-position:0% 92%}
    50%{background-position:100% 9%}
    100%{background-position:0% 92%}
}
@-moz-keyframes bgColor {
    0%{background-position:0% 92%}
    50%{background-position:100% 9%}
    100%{background-position:0% 92%}
}
@keyframes bgColor {
    0%{background-position:0% 92%}
    50%{background-position:100% 9%}
    100%{background-position:0% 92%}
}