* {
    font-family: 'Nunito', Calibri, sans-serif;
    text-align: center;
    margin-top: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(84, 175, 187);
}

.rotate {
    animation: rotation 3s infinite linear;
    background-color: transparent;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}