/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{font-size:100%;font:inherit;padding:0;border:0;margin:0;vertical-align:baseline;text-decoration: none;}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}.clear{clear:both}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}

html,
body,
.wrapper {
    width: 100%;
    height: 100%;
    display: block;
    overflow:  hidden;
}

@keyframes bgchange {
    0% { background-color: #FF4D03;}
    50% { background-color: yellow;}
    100% { background-color: #FF4D03;}
}
@keyframes rotation {
    0% { transform: rotate(-30deg); }
    50% { transform: rotate(30deg); }
    100% { transform: rotate(-30deg); }
}
@keyframes wobble {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(450px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(450px) rotate(-360deg); }
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bgchange 2s linear infinite;
}
.solaire {
    animation: rotation 1s infinite;
}
.grass {
    position: absolute;
    width: 120%;
    height: 130%;
    display: block;
    background: url(img/grass.png) 0 -100% / cover no-repeat;
    animation: wobble 2s linear infinite;
}
.sun-orbit {
    position: absolute;
    animation: orbit 5s linear infinite;
}
.sun {
    animation: rotation 2s ease-in-out infinite;
}
