* {
    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;
}
.subtitle--no-center {
    font-size: 1.06rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: 0.78px;
    color: #a4abb6;
}
.legend {
    margin: 20px 0;
    display: flex;
    justify-content: space-evenly;
    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--madrid::before {
    background: #2900ff;
}
.legend__item--spain::before {
    background: #ffcf5b;
}