@charset "UTF-8";

.top-tbl{
    text-align: center;
    table-layout: fixed;
    width: 100%;
    padding: 0.5rem;
}
.top-tbl td{
    border: solid 1px;
    padding: 5px;
    background-color: rgb(238, 238, 238);
}
.top-tbl a{
    text-decoration: none;
    display: block;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 1rem;
}

/*
MOBILE SIZE
================================================ */
@media (max-width: 700px) {
    .top-tbl{
        padding: 0rem;
    }
    .top-tbl td{
        height: 36px;
    }
    .top-tbl a{
        font-size: 0.5rem;
    }
}