.chamada-linha {
    text-align: center;
    /* background: #eee; */
    height: auto;
    display: flex; display: -ms-flexbox; -moz-display: flex;;
    justify-content: space-evenly;
    flex-wrap: wrap; -ms-flex-wrap: wrap;
    padding: 1rem 0.5rem;
    border-top: 1px solid #ccc;
}


.chamada-linha a {
    display: inline-block;
    text-decoration: none;
    color: #f2f2f2;   
    font-family: sans-serif;
    margin: 10px;
    letter-spacing: 1px;
    font-size: 1.2rem;
    padding: 20px 0;
    width: 300px;
    background: MediumSeaGreen;
    border-radius: 5px;
    position: relative;
    text-shadow: none;
    white-space: nowrap;
}

.chamada-linha a:first-of-type {
    background: #3c85b3;
}

@media (max-width: 600px) {
    
    .chamada-linha a {
        font-size: 1.2rem;
        padding: 10px 0; 
        width: 300px
    }
}

/* 
.chamada-linha {
    text-align: center;
    background: #eee;
    height: auto;
    display: flex; display: -ms-flexbox; -moz-display: flex;;
    justify-content: space-evenly;
    flex-wrap: wrap; -ms-flex-wrap: wrap;
    padding: 1rem 0.5rem;
    position: relative;
}


.chamada-linha a {
    display: inline-block;
    text-decoration: none;
    color: #f2f2f2;   
    font-family: dosis-bold;
    margin: 10px;
    letter-spacing: 1px;
    font-size: 1.5rem;
    padding: 10px 0;
    width: 300px;
    background: linear-gradient(transparent 50%,MediumSeaGreen 50%);
    position: relative;
    text-shadow: none;
    white-space: nowrap;
    text-shadow: 3px 0 4px MediumSeaGreen,
                 -3px 0 4px MediumSeaGreen,
                 0 3px 4px MediumSeaGreen,
                 0 -3px 4px MediumSeaGreen;
    z-index: 0;
}

.chamada-linha a:after {
    content: '';
    position: absolute;
    background: MediumSeaGreen;
    bottom: 0;
    width: 100%;
    height: 50%;
    left: 0;
    z-index: -1;
    border-radius: 5px;
} */