header {
    border: 1px greenyellow;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: mediumvioletred;
}

header p {
    font-style: oblique;
}

header img {
    width: 40%;
    border: 2px solid red;
    border-radius: 50%;
    box-shadow: 2px 2px 2px chocolate;
}

header img:hover {
   transform: scale(.9); 
   transition: all .3s ease-in-out;
}

header button {
    display: block;
    margin: 30px auto;
    padding: 12px 30px;
    background-color: crimson;
    color: cornflowerblue;
    border: none;
}

header button:hover {
    background-color: darkmagenta;
    color: blue;
    border: 1px solid brown;
    transform: scale(.9);
    transition: all .3s ease-in-out;
}

#about {
    width: 95%;
    margin: 40px auto;
    display: flex;
}
.left-about img {
    width: 35%;
    border-radius: 30px 0;
    margin-left: 50px;
    box-shadow: 3px 3px 12 px indigo;
}
.right-about {
    width: 70%;
    padding: 50px;
}
.right-about h2 {
    color: deeppink;
}

#project h2 {
    color: cadetblue;
}

.project-image {
    width: 90%;
    display: flex;
    flex flex-wrap: wrap;
}

.project-image img {
    width: 25%;
    padding: 20px;
    margin: 0 auto;

}

.project-image img:hover {
   transform: scale(.9);
   transform: all.3s ease-in-out;
   box-shadow: 4px 4px 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: aquamarine;
    color: aqua;
    border-top: 3px slateblue;
}

footer img {
    width: 24px;
}