body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: violet;
    font-family: cursive;
}

.stats-container {
    margin: 20px;
    border: dotted purple;
    min-width: 200px;
    height: 100px;
    position: relative;
    padding: 20px;
}

.stats-container h4 {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.counter {
    font-size: 3.125em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: purple;
}

@media (max-width:600px) {
    body {
        flex-direction: column;
    }
}