@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.lato{
    font-family: "Lato", serif;
}
    /* Spinner styles */
    #spinner{
        display: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-top: 4px solid #0e0101;
        border-right: 4px solid transparent;
        box-sizing: border-box;
        animation: rotation 2s linear infinite;
        }
        #spinner::after {
        content: '';  
        /* display: none; */
        box-sizing: border-box;
        position: absolute;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #FF3D00;
        border-bottom: 4px solid transparent;
        animation: rotation 1s linear infinite reverse;
        }
        @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
        } 
    