* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: monospace;
    background-color: #333;
    width: 100vw;
    height: calc(100dvh - 100px);
}

.logo-carga {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle {
    border: 4px solid #ccc;
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 80px 50px 70px 40px;
}

.circle-1 {
    animation: girar 1s linear infinite;
    border-color: #e22;
}

.circle-2 {
    animation: girar 3s linear infinite;
    border-color: #2e2;
}

.circle-3 {
    animation: girar 5s linear infinite;
    border-color: #22e;
}

.circle-4 {
    animation: girar 7s linear infinite;
    border-color: #dc2;
}

.text-container {
    position: relative;
    width: 100dvw;
    height: 300px;
}

.text {
    margin: 0;
    padding: 0;
    color: #ccc;
    letter-spacing: 1px;
    font-size: 20px;
    bottom: 0;
    text-align: center;
}

.contador {
    scale: 50%;
    position: fixed;
    left: 0;
}

@keyframes girar {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}