* {
    padding:0;
    margin: 0;
    box-sizing:  border-box; 
    
}
body { 
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: mintcream;
}

.wrapper {
    font-family: 'Brush Script MT', cursive;
    color:#333;
    padding: 25px 50px 100px 50px; 
    border: 1px dashed darkblue; 
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: ghostwhite;
    /* rgba(255, 255, 255, 0.9); */
}

.wrapper img {
    border-radius: 100%;
    /* border: 2px groove black; */
    height: 200px;
    width: 200px;
    object-fit: cover;
    object-position: center top;
    /* margin-bottom:25px; */
    margin: 15px 20px 25px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);

}
.wrapper a {
    color:rgb(14, 85, 85);
}
.text_insider_wrapper {
    margin-bottom: 20px;
    display:flex;
    align-items:center;
    justify-content: justiy;

}
