* {
    box-sizing: border-box;
   text-decoration: none;
font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
background-color: #bab5b5;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
    text-align: center;
    align-content: center;
   
}

.con {
    color: rgb(255, 255, 255);
    width: 380px;
    height: 540px;
    background-color: rgba(72, 71, 71, 0.51);
    border-radius: 20px;
    transition: 0.6s;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.con:hover {
    box-shadow: 0px 0px 30px black;
    transform: scale(1.016);

}

.rasm {
    margin-top: 40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
a{
    display:flex;
    
}
button{
    width: 300px;
    height: 40px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 20px;
    margin-top: 10px;
    transition: 0.6s;
}
button:hover{
    box-shadow: 0px 0px 17px white;
    transform: scale(1.018);
}
