/* Snoop-Stopper.com Styles
   2020 */

body, html {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #000000;
    background-image: url('../assets/bg.jpg');
    background-size: auto 100%;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
    background-repeat: repeat-x;
    background-attachment: fixed;
}

    .container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .logo {
            max-width: 100%;
            margin: auto;
            padding: 1rem;
        }

        .logo img {
            max-width: 100%;
            height: auto;
            display: block;
            animation: slow-fade 5s linear infinite;
        }

        @keyframes slow-fade {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
            100% { 
                opacity: 1;
            }
        }

        @-webkit-keyframes slow-fade {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
            100% { 
                opacity: 1;
            }
        }

        #footer {
            font-size: .7rem;
            color: #29bb36;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
            text-align: center;
            position: absolute;
            bottom: 0;
            width: 100%;
            padding-bottom: 1rem;
        }

            #footer a { color: #29bb36; }