@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:#d5b0c2;

    height: 100vh;
}


.img{
    margin-top: 100px;
    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;
}

.text h1 span{
    color: #7e7e7c;
}



.edit-img{
    width: 340px;
    animation: z 1.5s ease 1;
    box-shadow: 1px 1px 20px black;

}


@media (max-width:740px){
    
    body{
    background:#d5b0c2;

    }
    
    .text{
        font-size:11px;
        margin-bottom:50px;
    }
    
    .img{
        gap:150px;
    }
    
    
    .logo img{
      margin-left:150px;
        padding:5px;
        width:80px;
         display: flex;
    margin: auto;

    }
    
    .edit-img{
            box-shadow: 1px 1px 20px black;
            opacity:1;

    }
    
 
}

