* {
    box-sizing: border-box;
    justify-items: auto;
    text-align: center;
}

table.title {
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
    font-size: 25px;
    min-width: 90px;
    min-height: 300px;
    margin-left: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

table li {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: 15px;
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    border-radius: 20px;
    transition: transform 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
    cursor: cell;
}

table li:hover {
    color: #AF002FFF;
    font-weight: 600;
    transform: scale(1.03);
    background-color: #0000002F;
    border-color: #007bff;
}

.hr-sect {
    width: 100%;
    color: #0000005b;
    font-weight: 800;
    display: flex;
    flex-basis: 20%;
    align-items: center;
}

.hr-sect::before,
.hr-sect::after {
    flex-grow: 2;
    background: #0000005b;
    height: 1px;
    font-size: 1px;
    line-height: 0px;
    margin: 0px 0px;
    content: "";

}

li {
    padding: 0.5em;
    margin: 2px;
    text-align: center;
    border: 2px solid #0000005b;
}