body {
    background-color:#C4D7FF ;
}
header {
    border: #C4D7FF;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
h1 {
    color: cornflowerblue;
}
p {
    font-style: italic ;
}
img {
    width: 40%;
    border: 3px solid cornflowerblue ;
    border-radius: 50%;
    margin-bottom: 30px;
    display: block;
    margin: 0 auto;
}

img:hover {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

button {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: cornflowerblue;
    color: black;
    border: none;
    border-radius: 20px 0 20px 0;
    cursor: pointer;
}
button:hover {
    transform: scale(.8);
    transition: all .3s ease-in-out;
    background-color: darksalmon;
    color: aliceblue;
}
.about {
    display: flex;
    padding-left: 30px;
}
.about img {
    width: 40%;
}
.about p {
padding-left: 40px;
margin: auto;
}