body {
    margin: 0px;
    width: 100%;
    height: 100%;
    font-family: "Raleway", Helvetica, sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(160, 160, 160, 1);
    overflow: hidden;
}

.number {
    font-family: "Raleway", Helvetica, sans-serif;
    font-size: 10em;
    font-weight: 600;
    position: absolute;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    display: none;
    width: 100%;
    height: 300px;
    line-height: 250px;
    z-index: 9999;
}

span {
    display: inline-block;
    vertical-align: middle;
}

#main-video {
    z-index: 999;
}

@keyframes color-change {
    0% {
        color: #10a4b2;
    }

    50% {
        color: gray;
    }

    100% {
        color: #10a4b2;
    }
}

@-o-keyframes color-change {
    0% {
        color: #10a4b2;
    }

    50% {
        color: gray;
    }

    100% {
        color: #10a4b2;
    }
}

@-moz-keyframes color-change {
    0% {
        color: #10a4b2;
    }

    50% {
        color: gray;
    }

    100% {
        color: #10a4b2;
    }
}

@-webkit-keyframes color-change {
    0% {
        color: #10a4b2;
    }

    50% {
        color: gray;
    }

    100% {
        color: #10a4b2;
    }
}

.color-swing {
    animation: color-change 4s infinite;
    -webkit-animation: color-change 4s infinite;
    -moz-animation: color-change 4s infinite;
    -o-animation: color-change 4s infinite;

}

#main {
    width: 300px;
    height: 250px;
}

#main-fake {
    width: 250px;
    height: 225px;
}

@media screen and (max-device-width: 480px) {

    #main {
        width: 300px;
        height: 250px;
    }

    #main-fake {
        width: 300px;
        height: 250px;
    }
}

@media screen and (max-device-width: 640px) {

    #main {
        width: 290px;
        height: 240px;
    }

    #main-fake {
        width: 290px;
        height: 240px;
    }
}