body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #000;
}

#leo {
    color: white;
    font-size: 2.5em;
    margin-top: 4em;
    font-family: 'Raleway', sans-serif;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.text-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-container h1 {
    margin: 0;
    font-size: 150px;
    color: rgba(225, 225, 225, .01);
    background-image: url("https://images.pexels.com/photos/1616403/pexels-photo-1616403.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-repeat: repeat;
    -webkit-background-clip: text;
    animation: animate 15s ease-in-out infinite;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

@keyframes animate {
    0%,
    100% {
        background-position: left top;
    }
    25% {
        background-position: right bottom;
    }
    50% {
        background-position: left bottom;
    }
    75% {
        background-position: right top;
    }
}


/* Mobile Media Query */

@media only screen and (max-width: 767px) {
    .text-container h1 {
        font-size: 80px;
    }
    #leo {
        font-size: 1.8em;
        margin-top: 2em;
        color: white;
    }
}


/* Big Screen Media Query */

@media only screen and (min-width: 1200px) {
    .text-container h1 {
        font-size: 250px;
    }
    #leo {
        font-size: 2.5em;
        margin-top: 1em;
        color: white;
    }
}