body {
    background-color: rgb(210, 183, 127);
}

header {
    border: 5px solid #FFD7C4;
    padding: 30px;
    text-align: center;
}

header h1 {
    color: rgba(255, 235, 205, 0.818);
}

header p {
    font-style: italic;
}
header img {
    width: 35%;
    border: 2px solid #c4f7ff;
    border-radius: 50%;
}
header img:hover {
    transform: scale(.8);
    transition: all .3s ease-in-out;
    box-shadow: 2px 2px 12px #FFD7C4
}
header button {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: lightskyblue;
    color: azure;
    border-radius: 20px;
    border: 3px solid antiquewhite
}
header button:hover {
    background-color: rgb(70, 206, 161);
    color: rgb(143, 198, 198);
}
.project {
    width: 90%;
    margin: 20px auto;
    border: 1px blue;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
    

.project img {
    width: 30%
}

.project img:hover {
    transform: scale(.1)
    transition: all.3s ease-in-out
    box-shadow: 2px 2px 12px 
}
footer {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background-color: bisque;
    color: rgb(201, 121, 0);
}