﻿.arrow {
    text-align: center;
    margin: 0px;
}

.arrow a {
    font-size: 30px;
    font-weight: 300;
    color: #c91016;
}

.arrow .top a {
    margin-bottom: -10px;
}

.arrow .bottom a {
    margin-top: -40px;
}

.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}
