body {
    background-image: url("https://selfpublishingadvice.org/wp-content/uploads/2015/10/Chinese-flag.png");
    background-color: #da2710;
    transform: rotate(-.1deg);
    display: flex;
    flex-direction: column-reverse;
}

.header:hover {
    display: none;
}

p {
    font-family: "Lucida Handwriting";
}

@keyframes mao {
    from { rotate: 0deg; }
    to { rotate: 360deg; }
}

.avatar {
    animation-name: mao;
    animaiton-delay: 2s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
/*    animation-direction: alternate; */
}

