body {
    background-color: brown;
    color: bisque;
    
}
h1 {
    color: burlywood;
    text-align: center;
}
body {
    text-align: center;
}
p span {
    font-weight: bold;
    color: rgb(235, 163, 8);
}
img {
    filter: blur(10px);
    transition: filter 1s ; 
}
img:hover {
    filter: blur(0px);
}