body{
    background: lightblue;
    font-family: fantasy;
    margin: 20px auto;
    width: 800px;
}
header{
    background: #1FE8FA;;
    padding: 20px;
}
header img {
    width: 30%;
    float: right;
}
h1{
    color: #F5ABFF;
    font-family: serif;
    margin: 0;
    text-align: center;
}
main{
    background: white;
    padding: 20px;
}
.animation {
    transition: all 2s;
}
.animation:hover {
    
    width: 200px;
    transform: rotate(360deg);
}