*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.parent{
    line-height: 1.2px;
    width: 390px;
    position: fixed;
    top: 50%;
    left: 50%;
    display: space-between;
    transform: translate(-50%, -50%);
    padding-bottom: 20px;
    background-color:rgba(123, 66, 40, 0.527); 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    object-fit: contain;
    min-height: 0px;

}
.child{
    display: contents;
    border-radius: 2px;
}
img{
    margin-top: 9%;
    margin-bottom: 7%;
    clip-path: circle(50%);
    height: 100px;
    object-fit: cover;
}
body{
    background-color:sienna;
    font-family: Arial, sans-serif;
    position:static;
    display: flex;
    flex-wrap:wrap;
}
button{
    width: 85%;
    height: 50px;
    cursor:pointer;
    border: solid black ;
    border-left-width:1px ;
    border-top-width:1px ;
    border-radius: 20px;
    border-bottom-width: 5px;
    border-right-width: 5px;
    margin-bottom: 10px;
}
h2{
    color:whitesmoke ;
    text-shadow: 50px;
    margin-bottom: 7%;
}
h3{
    margin-bottom: 10%;
}
p{
    margin-bottom:9% ;
    color: white;
}
 button:active{ 
    position: var(80%);
    height: 40px;
}
@media screen and (max-width: 976px){
        .parent{
            flex-direction: column;
            justify-content: center;
            width:80%;
            align-items: center;
        }
        .buttons{
            width: 80%;
        }
        .writing{
            width: 100%;
        }
        h3{
            margin-top: 2%;
        }
        button{
            height: 50px;
        }
        
    }
    
