* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: cursive;
}

main {
    padding: 70px 20px;
    max-width: 70%;
    background-color: slateblue; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    position: relative;
    margin: 5px;
    
}

img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
}



h4 {
    padding-top: 10px;
    font-size: 13px;
    font-weight: 100;
}

