@media only screen and (min-width: 360px) and (max-width: 640px){
    *{
        margin: 0%;
        padding: 0%;
    }
    .nav_bg{
        background-color: rgb(255, 255, 255);
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: space-between;
        position: sticky;
        top: 0px;
        left: 0px;
        box-shadow: 0px 3px 8px  rgb(230, 230, 230);
    }
    .snippets ul{
        display: none;
        justify-content: space-between;
    }
    .logo h5{
        font-size: 14px;
        font-weight: 500;
    }
    .heading h1{
        font-size: 20px;
        font-family: poppins;
        font-weight: 500;
        text-align: center;
        margin-top: 3em;
        text-decoration-line: underline;
        text-decoration-color: #049DD9;
        text-underline-offset: 10px;
    
    }

    .heading p{
        font-size: 14px;
        font-family: poppins;
        font-weight: 400;
        text-align: center;
        margin: 1em;
    }

    .images{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2em;
        gap: 20px;
    }
    .images img{
        width: 150px;
        height: 200px;
        border-radius: 10px;
       
    }
    .buttons{
        display: flex;
        flex-wrap: wrap;
        gap: 51px;
        margin-top: 2em;
        justify-content: center;
    }
    .button1 input{
        width: 130px;
        height: 43px;
        background-color: #049DD9;
        border: none;
        font-size: 14px;
        color: white;
        font-weight: 500px;
        border-radius: 5px;
        cursor: pointer;
    }
    .button2 input{
        width: 180px;
        height: 43px;
        background-color: #ffffff;
        border: 2px solid #049DD9;
        font-size: 14px;
        color: #049DD9;
        font-weight: 500px;
        border-radius: 5px;
        cursor: pointer;
    }
    



























}