/* *{
    padding: 0px;
    margin: 0px;




} */


p{
    color: yellow;
    background-color: black;
    font-style: italic;
    font-size: smaller;


}

#para{
    color: purple;
    background-color: darkorange;




}

.group_one{
    background-color: chartreuse;
    color: blueviolet;


}

ul.first_ul{
    list-style-type: circle;

}

ul.second_ul{
    list-style-type: square;

}

ol{
    list-style-type: lower-greek;

}

table#first_table{
    border-collapse: collapse;
    width: 50%;
    margin: 0px auto;
    
}

table th, table td{

    border: 3px solid red;
    padding: 5px;
    transition: 0.33s;


}


td{
    text-align: right;
}

#table_head{
    text-align: center;

}

.last_month{
    opacity: 50%;
}

td:hover{
    background-color: #0abb9e;
    color: white;
    font-weight: bold;

}

