*{margin:0; padding:0;}
html,body{
    width:100%;
    height:100%;
    position:absolute;
    overflow:hidden;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 100;
}

html{
    /*background: url("farm-bg.webp") 0% 0% repeat;
    background-size: cover;
    -webkit-animation-name: STAR-MOVE;
    -webkit-animation-duration: 200s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;*/
}

body{
    max-width: 1200px !important;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    width: 100%;
}

@-webkit-keyframes STAR-MOVE {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}