@font-face {
    font-family: 'Indie';
    src: url(../fonts/Indie/Indie.eot);
    src: url(../fonts/Indie/Indie.eot?#iefix) format("embedded-opentype"), url(../fonts/Indie/Indie.woff) format("woff"), url(../fonts/Indie/Indie.ttf) format("truetype"), url(../fonts/Indie/Indie.svg#Indie-Light) format("svg");
}

@font-face {
    font-family: 'Raleway';
    src: url(../fonts/Raleway/Raleway.eot);
    src: url(../fonts/Raleway/Raleway.eot?#iefix) format("embedded-opentype"), url(../fonts/Raleway/Raleway.woff) format("woff"), url(../fonts/Raleway/Raleway.ttf) format("truetype"), url(../fonts/Raleway/Raleway.svg#Raleway-Light) format("svg");
}

@keyframes move {
    0% {
        transform: skewX(20deg);
    }
    16% {
        transform: skewX(-20deg);
    }
    32% {
        transform: skewX(10deg);
    }
    48% {
        transform: skewX(-10deg);
    }
    64% {
        transform: skewX(5deg);
    }
    80% {
        transform: skewX(-5deg);
    }
    100% {
        transform: skewX(0deg);
    }
}

@-webkit-keyframes move {
    0% {
        transform: skewX(20deg);
    }
    16% {
        transform: skewX(-20deg);
    }
    32% {
        transform: skewX(10deg);
    }
    48% {
        transform: skewX(-10deg);
    }
    64% {
        transform: skewX(5deg);
    }
    80% {
        transform: skewX(-5deg);
    }
    100% {
        transform: skewX(0deg);
    }
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 20px;
}

body {
    overflow: hidden;
}

button {
    border: dashed 1px #000;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 20px;
    background: transparent;
    font-family: Raleway, sans-serif;
    margin-right: 5px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

button:focus {
    outline: 0;
}

.container {
    width: 100vw;
    height: 100vh;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.content {
    max-width: 50%;
    text-align: center;
}

#canvas-radial {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -9;
}

h1 {
    font-size: 10vw;
    font-family: Indie, sans-serif;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

h2 {
    font-size: 16px;
    font-family: Raleway, sans-serif;
    margin-bottom: 30px;
    margin-top: -20px;
    font-weight: 100;
}

input {
    background: transparent;
    width: 140px;
    cursor: pointer;
    padding: 10px 5px 12px;
    margin-right: 5px;
    font-size: 28px;
    font-family: Raleway, sans-serif;
    text-align: center;
    outline: none;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    transition: all 1s ease;
}

input:focus {
    outline: none;
}

.move {
    -webkit-animation: move 0.5s;
}

.lossButton:active {
    border-style: dotted;
}

@media (max-width: 1000px) {
    .inputs {
        max-width: 200px;
        margin: auto;
    }

    h2 {
        margin-top: 0;
        font-size: 14px;
    }

    input {
        margin: 10px 0;
    }

    h1 {
        font-size: 10vw;
    }

    button {
        font-size: 16px;
    }
}

/*# sourceMappingURL=stylex.css.map */
