﻿body {
    margin: 0px;
    font-family: Source Sans Pro, Sans-serif;
}
p {
    color: rgb(109, 137, 137);
    font-size: 21px;
}

a {
    color: rgb(191, 147, 78)
}

footer {
    margin:16px;
}

.body-content {
    margin:16px;
}

.spacer {
    height: 500px;
    width: 100%
}


.loading-dots span {
    animation: blink 1.5s infinite;
    font-size: 2rem;
    opacity: 0;
}

    .loading-dots span:nth-child(1) {
        animation-delay: 0s;
    }

    .loading-dots span:nth-child(2) {
        animation-delay: 0.3s;
    }

    .loading-dots span:nth-child(3) {
        animation-delay: 0.6s;
    }

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
