@media (min-width:320px) and (max-width:740px){
    *{
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
    }
html{
    /* overflow: hidden; */
}
    body{
        width: 100vw;
        height: 100vh;
        /* border: 2px solid red; */
        background: linear-gradient(to top left, #fff,rgb(144, 144, 255),#0073ff);
           display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        margin-top: 30px;
        padding-bottom: 30px;
    }


    .conteher_mid{
        width: 98%;
        height: auto;
        min-height: 200px;
        /* border: 2px solid blue; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;



    }

    .conteher_mid > h2{
        color: #ffffff;
        font-size: 50px;
        font-family: Science Gothic;
        text-align: center;
        margin-bottom: 10px;
    }
    .conteher_mid > h3{
        color: #ffffff;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 100;
        text-align: center;
        width: 98%;
        margin-bottom: 10px;
    }

    .logo{
        width: 200px;
        height: 200px;
        /* background-color: aqua; */
        background-image: url(../img/d4ff2365e6739c39dd03a70154990ac7.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 110%;
        margin-bottom: 20px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;

        /* border: 3px solid #001182; */
    }

    .l{
        width: 140px;
        height: 140px;
         background-image: url(../img/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 100%;
        position: relative;
      
           overflow: hidden;
    }
    .sub_logos{
        width: 100px;
        height: 100px;
        background-image: url(../img/sublg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-bottom: 20px;
    }

    .button{
      width: 60%;
      height: 59px;
      border: 6px solid #ffff;
      text-align: center;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      font-size: 20px;
      background-color: transparent;
      border-radius: 20px;    
      color: #ffff;
      letter-spacing: 5px;
      transition: transform 1s linear;
    }

    .button:hover{
        transform: scale(1.1);
        background-color: greenyellow;
              border: 6px solid #ffff;
              color: lightgreen;
            }


    .atri{
      width: 100%;
      height: auto; 
      text-align: center;
      top: 14%;
      position: relative;
      transform: translateY(-50%);   
    font-size: 20px;
    color: #fff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
    
    
    }


    .atri > a{
      color: transparent;
      background: linear-gradient(to top left,#ff0000,rgb(0, 0, 0));
      text-decoration: none;
      background-clip: text;
    }
  
}