body {
    background-color: lightblue;

h1{
color: deeppink ;
font-family: "p22-folk-art-stitch", sans-serif;
font-size: 50px;
text-align: center;
text-transform: lowercase;
}
h1:hover {
    color: ivory;
}

p{
color: deeppink;
font-family: "p22-folk-art-stitch", sans-serif;
font-size: 25px;
text-align: center;
}
p:hover{
    color:ivory;
}

ul{
list-style-type: none;
display: inline;
color: deeppink;
font-family: "p22-folk-art-stitch", sans-serif;
font-size: 20px;
margin-top: 60px;
text-align: center;
}

a:hover {
    color: ivory;
}

a {
    color: deeppink;
}

img {
    display: block;
    margin:70px auto;
    max-width: 25%;
    height: auto;
}

img {
    border-radius: 20px;
    border: solid, deeppink, 2.5px;
}

img:hover {
    border-color: ivory;
}


}