body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(90deg, #f1deb8 0%, #b8e1f1 100%);
}
.btn {
    width: 200px;
    height: 45px;
}

.row_first {
    display: flex;
    justify-content: center;
}

.row_second {
    display: flex;
    justify-content: center;
}

.row_third {
    display: flex;
    justify-content: center;
}

@media(max-width:1000px) {
    .row_first a .btn{
        display: flex;
        justify-content: center;
        width: 150px;
    }

    .row_second a .btn{
        display: flex;
        justify-content: center;
        width: 150px;
    }

    .row_third a .btn{
        display: flex;
        justify-content: center;
        width: 150px;
    }
}
@media(max-width:850px){
    .main-instructions-heading h3{
        font-size: 19px;
        font-weight: bold;
    }
}
@media(max-width:720px){
    .row_first{
        display: grid;
        grid-template-columns: auto auto;
        
    }

    .row_second{
        display: grid;
        grid-template-columns: auto auto;
        
    }

    .row_third{
        display: grid;
        grid-template-columns: auto auto;
        
    }
}
/* @media(max-width:600px){
    .main-instructions-heading h3{
        font-size: 15px;
        font-weight: bold;
    }
} */
/* @media(max-width:475px){
    .main-instructions-heading h3{
        font-size: 13px;
        font-weight: bold;
    }
} */
@media(max-width:423px){
    /* .main-instructions-heading h3{
        font-size: 12px;
        font-weight: bold;
    } */
    .row_first a .btn{
        width: 130px;
    }

    .row_second a .btn{
        width: 130px;
    }

    .row_third a .btn{
        width: 130px;
    }
}