﻿#spinner {
    height: 120px;
    width: 120px;
    border: 7px solid;
    border-radius: 50%;
    border-color: forestgreen white white white;
    animation: rotate .9s linear infinite;
    backdrop-filter: blur(10px)
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
