* {
    box-sizing: border-box;
} 
body {
    margin:0;
    padding:0;
    font-family: 'Roboto', sans-serif;
}
.content {
    width: 100%;
    max-width: 940px;
    margin: auto;
}
.title {
    text-align: center;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.26px;
    color: #001b48;
}
.subtitle {
    font-size: 1.06rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: 0.78px;
    text-align: center;
    color: #a4abb6;
}
.legend {
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.legend__item {
    margin: 0 15px;
    padding-left: 20px;
    font-size: 1.06rem;
    position: relative;
    color: #001b48;
}
.legend__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.legend__item--positivo::before {
    background: #431eff;
}
.legend__item--recuperados::before {
    background: #fbd45c;
}
.legend__item--fallecidos::before {
    background: #e36858;
}
@media only screen and (max-width: 600px) {
    .legend {flex-direction: column;}
    .legend__item {
        margin: 5px 0;
    }
}