.bg-custom {
    background-color: #000000 !important;
}

.spinner {
    display: none;
    border: 12px solid #ff3add;
    border-radius: 50%;
    border-top: 12px solid #00ed00;
    border-right: 12px solid #d5fa00;
    border-bottom: 12px solid #0ac5ff;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 45%;
    margin-left: -30px;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

body {
    background-color: #fafafa;
    /* Margin bottom must match footer height */
    margin-bottom: 2rem;
}

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

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2rem;
    background-color: #646464;
    color: #dddddd;
}