h1 {
    font-size: 32px !important;
}

p{
  margin-top: 10px;
  font-size: 18px !important;
}

.spinner {
    width: 4em;
    height: 4em;
    margin: 0 auto;
    border: 0.5em solid rgba(0, 0, 0, 0.1);
    border-left-color: #0055c4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}