.spin-container {
    padding: 10rem 1rem 10rem 1rem;
    text-align: center;
}

.spinner {
    color: rgb(229, 231, 235);
    height: 50px;
    min-width: 50px;
    fill: #1c64f2;
}

.fullContainer{
    background-color: rgba(158, 158, 158, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    margin-left: 0px;
}

.animation-spin {
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}