    /* *{
        padding: 0px;
        margin: 0px;
    } */
    
    #my_unique_paragraph{
        color: blue;
    }

    p {
        color: yellow;
        background-color: coral;
    }

    h3 {
        font-size: 40px;
    }

    .my_class{
        background-color: rgba(255, 0, 0, 0.5);
    }

    .first_ul li{
        list-style-type: circle;
    }

    .second_ul li{
        list-style-type: square;
    }

    /* .first_ol{
        start: 50;
    } */

    table#first_table{
        border-collapse: collapse;
        width: 50%;
        margin: 0px auto;
    }

    th, td{
        border: 3px solid red;
        padding: 5px;
        transition: 0.3s;
    }

    td{
        text-align: center;
    }

    #calendar_heading{
        text-align: center;
    }

    .offset_month{
        opacity: 0.5;
    }

    td:hover{
        background-color: blue;
        color: white;
        font-weight: bold;
    }

    #first_tbl_heading{
        width: 200px;
    }