html {
    font-family: 'Lato', sans-serif;
}

* {
    padding: 0px;
    margin: 0px;
}

html {
    height: 100%;
    min-height: 100%;
}

body {
    display: flex;
    align-items: center;
    min-height: 100%;
}

#background {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.container {
    z-index: 100000;
    margin: auto;
    background-color: white;
    border-radius: 15px;
    max-width: 80% !important;
    -webkit-box-shadow: 0px 9px 20px -2px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: 0px 9px 20px -2px rgba(0, 0, 0, 0.76);
    box-shadow: 0px 9px 20px -2px rgba(0, 0, 0, 0.76);
    width: 450px !important;
    padding: 20px !important;
}

.title-block {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.border-bottom::after {
    display: block;
    width: 75%;
    height: 2px;
    background-color: black;
    content: "";
    margin: auto;
}

.title {
    font-family: "Abel", sans-serif;
    font-size: 64px;
    padding-right: 8px;
    line-height: 1.2;
}

.bold {
    font-weight: bold;
}

.box {
    display: block;
    width: 150px;
    height: 100px;
    margin: auto;
    padding-bottom: 20px;
}

.box-image {
    height: 75%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-image img {
    height: 95%;
}

.box-title {
    height: 25%;
    width: 100%;
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    border: none;
    color: black;
    line-height: 25px;
    font-weight: bold;
    padding-top: 5px;
}

a {
    text-decoration: none;
}


.top-padding {
    display: block;
    height: 20px;
    width: 100%;
}

@media only screen and (max-width: 500px) {
    .title {
        font-size: 40px;
        padding-right: 4px;
    }

    .box {
        height: 75px;
        width: 75px;
    }
}

/* CSS Spinner */
.spinner {
    display: flex;
    align-self: center;
    justify-content: center;
    margin: auto;
    width: 70px;
    text-align: center;
    position: relative;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #333;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background-color: #ff6347;
    z-index: 999999;
}