html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    color: #85bb65;
}

.text-md {
    font-size: 1.25em;
}

.text-lg {
    font-size: 1.5em;
}

.ma-5 {
    margin: 5px;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 5px;
    animation: spinner 1.5s infinite;
    border: 5px solid #cfd0d1;
    border-radius: 50%;
    border-top-color: #85bb65;
}