

.body{
    margin: 0%;
    padding: 0%;
    min-height: 99vh;
    display: flex;
    align-items:center ;
    justify-content: center; 
}
.terms-box{
    max-width: 46%;
    background-color: rgba(14, 13, 13, 0.781);
    color: white;
    font-family: Arial;
    padding: 60px 30px;
    border-radius: 2px;
}
.terms-text{
    padding: 0 20px;
    height: 400px;
    overflow-y:auto;
    font-size: 17px;
    font-weight: 500;
    color: #f1f1f1;
}

.terms-text::-webkit-scrollbar{
    width: 2px;
    background-color:rgba(14, 13, 13);
}

.terms-text::-webkit-scrollbar-thumb{
    background-color: #4acf50;
}
.terms-text h2{
    text-transform: uppercase;
}
.terms-box h4{
    font-size: 13px;
    text-align: center;
    padding: 0 40px;
}


.terms-box h4 span
{
 color: #4acf50; 
}


.buttons
{
    margin-top: 20px;
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
}


.btn
{
    height: 42px;
    width: 48%;
    border-radius: 6px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s linear;
}

h2
{
    color:#4acf50;
    font-size: 40px;
}

.red-btn
{
    background-color: #4acf50;
}

.red-btn a
{
    color: white;
    text-decoration: none;
}


.gr-btn
{
    background-color:white;
}

.btn:hover
{
    background-color: black;
}


@media only screen and (max-width:770px){
    .terms-text{
     width: 100%;
     max-height: 40%;
     padding:0px 0px;
     margin: 0%;
    }

    body{
        margin: 0%;
        padding: 0%;
        min-height: 100vh;
        display: flex;
        align-items:center ;
        justify-content: center; 
    }
.terms-box{
    max-width: 100%;
    background-color: rgba(14, 13, 13, 0.781);
    color: white;
    font-family: Arial;
    min-height: 100%;
    border-radius: 2px;
}
h2{
    font-size: xx-large;
}
}