body {
    margin: 0cm;
}
* {
    box-sizing: border-box;
}
.container {
    width: 50vw;
    min-width: 500px;
    max-width: 1000px;
    margin: 0cm auto;
    box-shadow: 0 0 20px grey;
    border-radius: 35px;
}
.head-image {
    background-color: white;
    background-image: url(./img/photo-1610296669228-602fa827fc1f.png);
    background-size: cover;
    background-position: bottom;
    min-height: 270px;
    box-shadow: 0 0 15px rebeccapurple;
    border-radius: 35px 35px 0 0;
}
.person-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
    display: block;
    border: 5px solid rgb(82, 142, 165);
    box-shadow: 0 0 10px rebeccapurple;
    margin: -150px auto 0 auto;
}
h1 {
    text-align: center;
    font-size: 40px;
    margin: 0vw;
    
}
p {
    text-align: justify;
    font-size: 20px;
    padding: 25px;
    margin: 0vw;
}
span {
    font-size: 30px;
    padding-left: 25px;
    padding-right: 25px;
}
button {
    display: block;
    background-color: rgb(29, 146, 74);
    width: 200px;
    height: 60px;
    color: white;
    border-radius: 15px;
    font-size: 20px;
    text-align: center;
    margin: 20px auto;
    border: none;
    box-shadow: 5px 5px 15px grey;
    
}

span:last-of-type {
    float: right;
}
.end {
    padding-top: 0;
    padding-bottom: 20px;
}