#dataSection {
    width: 100%;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dataWrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.circleWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.circleWrapper h5 {
    margin-top: 20%;
    font-weight: 200;
    font-size: 2rem;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 15rem;
    border: solid 2px #fff;
    border-radius: 500px;
    transition: 0.3s;
}

.circle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.circle h4 {
    cursor: default;
    margin-top: 0;
    font-size: 2.5rem;
}


/* RESPONZIVITA */

@media only screen and (max-width: 768px) {
    #dataSection {
        margin-top: 20%;
    }

    .dataWrapper {
        flex-direction: column;
        align-items: center;
    }

    .circleWrapper h5 {
        margin-top: 5%;
        margin-bottom: 20%;
        font-size: 1.6rem;
    }

    .circle {
        width: 12rem;
        height: 12rem;
    }
}