*{
margin: 0;
padding: 0;
box-sizing :border-box;
}
html,body{
width :100%;
height :100%;
}
html{
    font-size: clamp(10px,1vw,20px);
}
body{
   
    background-color: #7c7575;
}
.wraper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}
#parent{
    width: 90%;
height: 90%;
overflow: hidden;
display: flex;
padding: 2em;
border-radius: 8px;
    flex-direction: column;
    gap: 1em;
    background-color: #333;
}
#parent h1{
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 1em;
}
.child{
    border-radius: 8px;
    border: 1px solid #7c7575;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    position: relative;
    padding: 1.5em 1em;
    /* overflow: hidden; */
}
.child img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
     opacity: 0;
     mix-blend-mode: lighten;
    position: absolute;
    object-fit: cover;
    object-position: center;
    transition: all 0.2s ease-in-out;
}

.child h2{
    font-family: cursive,sans;
    font-size: 3em;
    text-transform: uppercase;
}
.child p{
    font-size: 1.2em;
}
#part2{
    border: 2px solid #7c7575;
    padding: 2.8em;
    border-radius: 8px;
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
}
#part2 img{
    width: 400px;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}
.btn{
    padding: 15px 25px;
    background-color: #ff4081;
    color: #fff;
    border: none;
    font-size: 1.5em;
    border-radius: 5px;
    cursor: pointer;
}
.btn:active{
scale: 0.95;
}
.center{
    align-items: center;
    justify-content: center;
}
.rmborder{
    border: none !important;
    display: block;
}
#part3{
    padding: 2.8em;
    border-radius: 8px;
    display: flex;
    gap: 2em;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
@media (max-width: 768px){
    #part2{
        flex-direction: column;
    }
    .btn {
        padding: 0.5em 1em;
    }
    #part2 img{
        width: 10em;
        height: 10em;
    }
}