@font-face {
    font-family: "AdihausDIN";
    src: url("../fonts/AdihausDIN/AdihausDIN.ttf") format("truetype");
}

@font-face {
    font-family: "Mukta";
    src: url("../fonts/Mukta/Mukta-Regular.ttf") format("truetype");
}

body {
    background: black;
}

.hero {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -30px;
    display: inline-block;
    max-width: 900px;
    z-index: 1;
    color: #fff;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.inner img {
    max-width: 50%;
}

@media screen and (max-width: 640px) {
    .inner img {
        max-width: 100%;
    }

    .hero {
        width: 70%;
    }

    #video {
        display: none;
    }

    body {
        background-image: url("../images/tmp.png");
        background-position: center;
    }
}

.text {
    font-family: 'Mukta';
    font-size: 1.6em;
}

footer {
    font-family: 'AdihausDIN';
}

.second  {
    font-family: 'AdihausDIN';
}

.title {
    font-family: 'Bebas Neue', cursive;
}

.button {
    background: #c3f200;
    padding: 20px 40px 20px 40px;
    display: inline-block;
    color: black;
}

#video  {
    margin-left: 50vw;
    transform: translate(-50%);
    position: fixed;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    left: 0px;
    top: 0px;
    overflow: hidden;
    opacity: 1;
}

.raster {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("../images/raster.png");
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.fa {
    margin-right: 5px;
}

* {
    padding: 0;
    margin: 0;
}

a {
    font-size: 1.5rem;
    padding: 1rem 3rem;
    color: #f4f4f4;
    text-transform: uppercase;
}

.elem {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid #c3f200;
    position: relative;
    overflow: hidden;
    font-size: 0.8em;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(195, 242, 0, 0.4),
            transparent
    );
    transition: all 650ms;
}

.btn:hover:before {
    left: 100%;
}

footer {
    position: absolute;
    color: white;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
}