.spinner {
    border: 8px solid #ace0e6;
    border-left-color: #02a7b8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}