.rule-modal{
    display: none;
    position: fixed;
    z-index: 9999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    
    .content{
        width: 300px;
        height: 300px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        padding: .5rem 1.5rem;
        border-radius: 0.75rem;

        header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;

            .title{
                margin: 0px;
                color: rgb(0 0 0 / 47%);
            }
        }

        section{
            .img-rules{
                width: 240px;
                height: 220px;
            }
        }
    }

    #the-x-close, #the-x-close-f{
        color: rgba(0, 0, 0, 0.3);
        font-size: 40px;
        cursor: pointer;
    }

    #the-x-close-f{
        font-size: 60px;
    }
}