header {
    border: 1px solid burlywood;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: darkblue;
}

header p {
    font-style: italic;
}

header img {
    width: 40%;
    border: 2px solid rgb(80, 80, 77);
    border-radius: 10%;
    box-shadow: 2px 2px 40px rgb(139, 139, 115);
}

header img:hover {
    transform: scale(.9);
    transition: all .3s ease-in-out;
}

header button {
    display: block;
    margin: 30px auto;
    padding: 12px 30px;
    background-color: bisque;
    color: darkslategray;
    border-color: wheat;
    border-radius: 20px;
    box-shadow: 2px 2px 10px grey;
}

header button:hover {
    background-color: grey;
    color: bisque;
    border-color: darkslategray;
    transform: scale(.9);
    transition: all .5s ease-in-out;
}

#about {
    width: 95%;
    margin: 40px auto;
    display: flex;
}

.left-about {
    width: 50%;
}
.left-about img {
    width: 100%;
    border-radius: 20px ;
    margin-left: 10px;
    box-shadow: 3px 3px 12px gray;
}

.right-about {
    width: 50%;
    padding: 40px;
}
.right-about h2 {
    color: darkslategray;
}

#project {
    width: 90%;
    margin: 30px auto;
    border: 1px solid grey;
    text-align: center;
}
#project h2 {
    color: rgb(204, 1, 1);
}

.project-image {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.project-image img {
    width: 25%;
    padding: 20px;
    margin: 0 auto;
}
.project-image img:hover {
    transform: scale(.9);
    transition: all .3 ease-in-out;
    box-shadow: 4px 4px 10px rgb(173, 17, 17);
}
footer {
    text-align: center;
    padding: 20px;
    background-color: grey;
    color: rgb(0, 0, 0);
    border-top: 3px solid rgb(17, 0, 168);
}
footer img {
    width: 24px;
}