@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    font-family:  "poppins",sans-serif ;
    margin: 0;
    padding: 0;

}
body{
    background: radial-gradient(#945207, #0b0b0b);

    height: 100%;
}


.img1{
    margin-top: 20px ;
    height: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: self-start;
    flex-wrap: wrap;
}


.green{
    height: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: self-start;
    flex-wrap: wrap;

}


/*.logo img{*/
/*    padding: 10px;*/
/*    width: 100px;*/
/*    animation: x 1s ease 1;*/
/*    background-attachment: fixed;*/
/*}*/

/* .text{
    color: #fff;
    font-size: 24px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    animation: y 1.7s ease 1;
}

.text h1 span{
    color: #b86c16;
} */



@keyframes x{
    0%{
        opacity: 0;
        translate: 0 -100px;
    }
}

@keyframes y {
    0%{
        opacity: 0;
        translate: 0 0;
    }
    
}

.edit-img{
    width: 340px;
    animation: z 1.5s ease 1;
    box-shadow: 1px 1px 25px black;

}



@keyframes z{
   0%{
    opacity: 0;
    translate: 0 50px;
   } 
}


@media (max-width:740px){
    
    body{
        background: radial-gradient(#945207, #0b0b0b);

    }
    
    .text{
        font-size:14px;
        margin-bottom:50px;
    }
    
    .img{
        gap:100px;
    }
    
    
    .logo img{
      margin-left:150px;
        padding:5px;
        width:80px;
         display: flex;
    margin: auto;

    }
    
    .edit-img{
            box-shadow: 1px 1px 25px black;
            opacity:1;

    }
    
 
}

