/*body {
    animation: glitch-bg 5s linear;
    animation-iteration-count: infinite;
}

@keyframes glitch-bg {
    0% {
        background-color: #f7f7f7;
    }

    95% {
        background-color: #f7f7f7;
    }

    100% {
        background-color: black;
    }
}*/

#landing_content {
    position: relative;
    background-image: url(../images/house-bw.png);
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: house-glitch 5s linear;
    animation-iteration-count: infinite;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0;
}

#landing_content button {
    font-family: Changa;
    padding: 20px 50px;
    font-size: 1.5em;
    line-height: 1.5;
    letter-spacing: 1px;
    background-color: black;
    color: #f7f7f7;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    cursor: pointer;
    transition: all 1s;
    border: 2px solid white;
    position: relative;
}

#landing_content button span {
    display: block;
    font-size: .5em;
    font-family: astoria;
    font-weight: 400;
}

#landing_content:hover button {
    opacity: 1;
}

@keyframes house-glitch {
    0% {
        background-image: url(../images/house-bw.png);
    }

    95% {
        background-image: url(../images/house-bw.png);
    }

    100% {
        background-image: url(../images/house-with-text-glitch2.png);
    }
}

@media screen and (min-width: 850px) {
    #landing_content {
        width: 80%;
        margin: 0 10%;
    }
}