﻿@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

* {
    box-sizing: border-box;
}
.logcounter {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 25vh; */
    overflow: visible;
    margin: 0;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
    .logcounter i {
        height: 115px;
        width: 115px;
        color: white;
        background-color: rgb(27, 159, 215);
        border-radius: 100%;
        align-content: center;
    }
    .logcounter span {
        FONT-WEIGHT: 600;
        font-size: 26px;
        margin-top: 20px;
        color:black;
    }
.counter-container {
    display: flow;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 16%;
}

.counter {
    FONT-WEIGHT: 600;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: black;
}
@media (max-width: 700px) {
    .counter-container {
        margin: 30px 40px;
    }
}
@media (max-width: 580px) {
    body {
        flex-direction: column;
    }

    .logcounter {
        display: inline;
        align-items: center;
        justify-content: center;
        height: 25vh;
        overflow: hidden;
        margin: 0;
    }

    
}
