h1 {
    color:powderblue
}
body{
    background-color: salmon;
    font-size: x-large;
    color:rgb(199, 204, 224);
    font-family:cursive
}

.logo {
    border: 2px solid black;
    border-radius: 50px;
    background: lightpink;
}
.logo:hover {
 background: lightblue;
 transition-duration: 2s;
}