html,body{font-size:18px;}
.content {
    max-width: 56.25rem;
    min-width: 56.25rem;
}
#main{
    display: flex;
        background-color: #FFF;
    width:100%;
    flex-direction: row;
    height: calc(100vh - 3rem);
}
#menu{
    width: 13.333rem;
    background-color: #f3f3f3;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
#menu:after{
    background: linear-gradient(to left, rgba(0, 0, 0, 0.2) 0px, rgba(0, 0, 0, 0.2) 1px, rgba(0, 0, 0, 0.1) 1px, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    right: 0;
    opacity: 0.5;
    pointer-events: none;
    position: absolute;
    top: 0px;
    transition-duration: 0.22s;
    transition-property: left, opacity, width;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
    width: 3px;
    content: '';
}
#arena{
    width: calc(100vw - 13.333rem);
    overflow: hidden;
}
#legend{
    z-index: 99999;
}
#legend h3 {
    height: 2rem;
    background-color: rgba(53,85,204,1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 2rem;
    color: #FFF;
    text-align: center;
    font-size: .875rem;
    margin: 0;
}
#legend .content{
    max-width: 36rem;
    min-width: 36rem;
}
#legend .data {
    margin: .5rem;
    padding: 0;
}
#legend .duo {
    display: flex;
    font-size: .875rem;
}
#legend ul{
    margin: .25rem;
    padding: 0;
    list-style-type: none;
    width: calc(50% - .25rem);
    border-right:.25rem solid #FFF;
}
#legend ul:last-of-type{
    border-left:.25rem solid #FFF;
    border-right:none;
}
#legend li{
    background: #FFF;
    padding: .25rem;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    display: flex;
    align-items: center;
}
#legend ul li:first-child {
    background: #e5e5e5;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    margin: .375rem -.25rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: .75rem;
}
#legend img{    height: 1.5rem;
    width: auto;
    display: inline-flex;
margin-right:.5rem;}