html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.animate-spin-slower {
    animation: spin 6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.animate-spin-slower {
    animation: spin 4s linear infinite;
}

@keyframes spin-reverse {
    to {
        transform: rotate(-1turn);
    }
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}


::-ms-reveal {
    display: none;
}