* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 592px;
    height: 358px;
    overflow: hidden;
}

.main-container {
    position: relative;
    width: 592px;
    height: 358px;
    background-color: #E0E0E0;
    overflow: hidden;
    border: white, 4px, solid;
    box-shadow: 7px 7px 15px rgb(225, 225, 225);
}

.circles {
    position: relative;
    width: 270px;
    height: 358px;
    animation: bobble 8s infinite ease-in-out 1.2s;
}

.circle-1 {
    position: absolute;
    top: 21px;
    left: -85px;
    width: 244px;
    height: 244px;
    background-color: #00BED5;
    border-radius: 50%;
}

.circle-2 {
    position: absolute;
    top: 35px;
    left: 29px;
    width: 220px;
    height: 220px;
    background-color: #F5B700;
    border-radius: 50%;
    border: white, 1px, solid;
}

.circle-3 {
    position: absolute;
    top: -170px;
    left: 214px;
    width: 220px;
    height: 220px;
    background-color: #ffffff;
    border-radius: 50%;
}

.circle-4 {
    position: absolute;
    top: 281px;
    left: 337px;
    width: 272px;
    height: 272px;
    background-color: #ffffff;
    border-radius: 50%;
}

.container-title {
    width: 160px;
    height: 160px;
}

.title {
    color: #194495;
    font-family: sans-serif;
    font-weight: 300;
    font-size: 39px;
    margin-bottom: 13px;
    margin-top: 46px;
    margin-left: 37px;
    letter-spacing: -1px;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.container-title span {
    font-weight: 600;
    font-size: 76px;
    line-height: 0.8;
}

.container-ind {
    position: absolute;
    top: 67px;
    left: 267px;
    width: 298px;
    height: 184px;
}

.container-ind p {
    color: #194495;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 32px;
}

span {
    font-size: 42px;
}

.circle-month {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #F5B700;
}

.circle-month h1 {
    color: #194495;
}

.circle-accumulated {
    width: 46px;
    height: 46px;
    background-color: #194495;
    border-radius: 50%;
}

.circle-ind {
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.circle-meta {
    width: 46px;
    height: 46px;
    background-color: #194495;
    border-radius: 50%;
    overflow: hidden;
}

.container-month {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.container-accumulated {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.container-meta {
    display: flex;
    justify-content: space-between;
}

h1 {
    text-align: center;
    margin-top: 7px;
    color: #ffffff;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 30px;
    overflow: hidden;
    width: 34px;
    margin-left: 6px;
}

img {
    width: 175px;
    height: 56px;
    position: absolute;
    top: 281px;
    left: 39px;

}

/*Circles*/
@keyframes bobble {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(17px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*Title*/
@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}