﻿.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1
}

.circle {
    animation: rotating 1s infinite;
    border: 6px solid transparent;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    border-top-color: #221d71;
    z-index: 0;
    position: absolute
}

.carregando {
    color: #221d71;
    font-family: Roboto
}

.content p {
    padding-bottom: 30px
}

.logo {
    width: 150px;
    height: 156px
}

@keyframes rotating {
    to {
        transform: rotate(360deg)
    }
}
