@charset "UTF-8";

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

h1 {
    font-size: 30vh;
    background-image: url(../img/bern-fresen-C5ZFSsfX8xM-unsplash.jpg);
    background-size: auto 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*background-position: center 45%;*/
    animation: move 20s linear infinite;
}

@keyframes move {
    from {
        background-position: center 0;
    }
    to {
        background-position: center 600%;
    }
}