@media screen {
    body{
        background-color: #ccc;
    }
}

/* Style rules for mobile viewport */


        header{
            background-color: brown;
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            height: 90px;
        }

        header img{
            margin: 0 auto;
        }

        main{
            background-color: lightsalmon;
            padding: 2%;
            font-size: 1.15em;
            font-family: "Numans", sans-serif;
        }

        .tel-link{
            background-color:chocolate;
            padding: 2%;
            margin: 0 auto;
            width: 80%;
            text-align: center;
            border-radius: 5px;
        }

        .tel-link a{
            color: #fff;
            text-decoration: none;
            font-size: 1.5em;
            display: block;
        }

        .hours{
            margin-left: 10%;
        }

        h1{
            text-align: center;
        }

        ul{
            list-style: square;
        }

        #Racoons{
            margin: 0 2%;
        }

        .round {
            border-radius: 8px;
        }

        /* show mobile class, hide tablet-desktop class */
        .mobile {
            display: block;
        }