body{
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    color: #7dbdbc;
    font-size: 14pt;
}

#cell {
    position: relative;
    height: 56px;
    width: 83%;
    margin: auto;
    vertical-align: middle;
    font-size: 11pt;

    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #7dbdbc00, #7dbdbcff, #7dbdbc00) 1;

    /* background-color: rgb(88, 88, 88); */
}
#dia {
    position: absolute;
    height: 30px;
    width: 25%;
    left: 10px;
    top: 50%;
    transform: translateY(-15px);
    text-align: left;
    font-weight: 300;
    text-transform: capitalize;

    /* background-color: rgb(105, 105, 105); */
}

#place {
    position: absolute;
    height: 30px;
    width: 40%;
    left: 50%;
    top: 50%;
    transform: translateY(-15px) translateX(-50%) ;
    text-align: center;
    font-weight: 400;
    text-transform: capitalize;

    /* background-color: aqua; */
}
#city {
    position: absolute;
    height: 30px;
    width: 33%;
    right: 10px;
    top: 50%;
    transform: translateY(-15px);
    text-align: right;
    font-weight: 300;
    text-transform: capitalize;

    /* background-color: blueviolet; */
}

@media only screen and (min-width:720px)
{
    #dia{
        left: 20%;
    }
    #city{
        right: 20%;
    }

}
