* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;   /* SCROLL BAR FULLY REMOVE */
}

body {
    background: #e7e7e7;
    font-family: "Noto Sans Tamil", sans-serif;
}

.rules-box {
    width:85%;
    margin: 40px auto;
    background: #fff;
    padding: 35px 45px;
    border-radius: 16px;
    border: 4px solid gray;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.25);
    overflow-x: hidden;    /* EXTRA SAFE */
    max-width: 100%;
}

.rules-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #b42b29;
    margin-bottom: 25px;
}

.rules-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
    margin-bottom: 25px;
    font-weight:500;
    line-break: anywhere;
}

.rules-list {
    font-size: 14px;
    line-height: 1.9;
    color: #111;
    padding-left: 20px;
    font-weight:500;
}

.rules-list li {
    margin-bottom: 14px;
}

/* Mobile phones */
@media (max-width: 768px) {
    

    .rule-box{
     margin:0;   
    }
    .rules-title{
        font-size:19px;
    
    }
    .rules-text{
        font-size:15px;
        
    }
    .rules-list{
        font-size:15px;
    }
    .rules-list li {
        margin-bottom: 15px;
        
    }

}
