

@media only screen and (min-width: 800px) {
    * {box-sizing: border-box}
    body {font-family: Verdana, sans-serif; margin:0}
    .mySlides {display: inline}
    img {vertical-align: middle;}

    /* Galley Slideshow container */
    .gallery-container {
        max-width: 360px;
        height: 900px;
        position: relative;
        margin: auto;
    }

    .gallery-container .img {
        vertical-align: middle;
        width:350px;
        height:600px;
    }

    /*Christmas Toys For Tots container*/
    .christmas-container {
        max-width: 600px;
        height: 400px;
        position: relative;
        margin: auto;
    }
    /* Slideshow container */
    .slideshow-container {
        max-width: 700px;
        height: 500px;
        position: relative;
        margin: auto;
    }

    /* Next & previous buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 22px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }
    //
    .prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(238, 238, 238, 0.8);
    }

    /* Number text (1/3 etc) */
    .numbertext {
        color: #FFFFFF;
        font-size: 14px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 20px;
        width: 20px;
        margin: 0 10px;
        background-color: #0033FF;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #CCCCCC;
    }

    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

}

@media screen and (max-width: 799px) {
/* On smaller screens, decrease text size */
    * {box-sizing: border-box}
    body {font-family: Verdana, sans-serif; margin:0}
    .mySlides {display: inline}
    img {vertical-align: middle;}

    /*Christmas Toys For Tots container*/
    .christmas-container {
        max-width: 500px;
        height: 250px;
        position: relative;
        margin: auto;
    }

    /* Slideshow container */
    .slideshow-container {
        max-width: 500px;
        width: auto;
        height: 275px;
        position: relative;
        margin: auto;
    }

    /* Next & previous buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 40%;
        width: auto;
        padding: 10px;
        margin-top: 0px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
        right: 0px;
        border-radius: 3px 0 0 3px;
    }

    .prev {
        left: 0px;
        border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(238, 238, 238, 0.8);
    }

    /* Number text (1/3 etc) */
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 20px;
        width: 20px;
        margin: 0 10px;
        background-color: #0033FF;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }

    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
    }

}