html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    color: #fffafe;
}

div.grid, div.grid:after, div.grid:before, div.grid > [class*='col-'] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.grid > [class*='col-'] {
    float: left;
    position: relative;
    height: 100%;
}

div.grid:after {
    content: "";
    display: table;
    clear: both;
}

div.grid > [class*='col-']:after {
    content: "";
    display: table;
    clear: both;
}

.center {
    text-align: center;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex.wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.col-1-2 {
    width: 50%;
}

.col-1-3 {
    width: 33.33%;
}

.col-2-3 {
    width: 66.67%;
}

.col-1-4 {
    width: 25%;
}

.col-3-4 {
    width: 75%;
}

.col-1-6 {
    width: 16.67%;
}

.col-1-8 {
    width: 12.5%;
}

.bitface, .curates {
    font-family: munroregular, Inconsolata, Consolas, monospace;
    font-size: 34px;
    line-height: 40px;
}

.bitface {
    background-color: #131313;
}

.thefunkycat {
    background-color: #1f1349;
    font-family: Roboto, sans-serif;
    font-size: 30px;
    line-height: 44px;
    padding-bottom: 1px;
}

.logo {
    width: 90%;
}

a {
    color: #fffafe;
}

a:hover {
    color: #b96cff;
}

.float {
    position: absolute;
}

.curates-ad {
    width: 100%;
    text-align: center;
    transform: translateX(50%);
    z-index: 2;
    animation: curates-ad 2s alternate ease-in-out infinite;
}

.curates-text {
    border: 2px solid #fffafe;
    display: inline;
    padding: 2px 24px;
}

.curates-arrow {
    font-size: 64px;
    margin-top: -8px;
    line-height: initial;
}

.curates {
    background-color: #6fd07b;
    text-align: center;
    padding-top: 1px;
    padding-bottom: 16px;
}

@keyframes curates-ad {
    from {
        bottom: -16px;
    }
    to {
        bottom: 24px;
    }
}

@media only screen and (max-width: 760px) {
    .bitface, .curates {
        font-size: 28px;
        line-height: 32px;
    }

    .thefunkycat {
        font-size: 23px;
        line-height: 37px;
    }
}

@media only screen and (max-width: 615px) {
    .bitface, .curates {
        font-size: 23px;
        line-height: 26px;
    }

    .thefunkycat {
        font-size: 20px;
        line-height: 29px;
    }

}

@media only screen and (max-width: 500px) {
    .bitface, .curates {
        font-size: 18px;
        line-height: 22px;
    }

    .thefunkycat {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 0;
    }
}