@media (min-width: 800px) {
    body {
        background-color: #fffafa;
        width: fit-content;
    }

    p {
        font-size: 15px;
    }

    /*Header block */
    .header {
        top: 0;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 12px;
        position: sticky;
        background-color: #fffafa;
        font-family: Georgia;
        border-bottom: solid gray;
        width: 100%;
    }

    /* children of header block */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .logo {
        cursor: pointer;
        position: relative;
        color: #750000;
        vertical-align: baseline;
        text-align: center;
        font-size: 0.9em;
        margin-right: 50px;
    }

    .h-navbar {
        cursor: pointer;
        margin-left: auto;
        text-align: center;
        margin-right: 10px;
    }

    /* children of dropdown */
    .dropbtn {
        cursor: pointer;
        background-color: #fffafa;
        z-index: 2;
        margin-right: 10px;
    }

    .dropbtn img {
        width: 17px;
        pointer-events: none;
    }

    .dropbtn:hover {
        background-color: #fff0f0;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        text-align: left;
        background-color: #fffafa;
        min-width: 50px;
        overflow: auto;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        cursor: pointer;
        background-color: #ddd;
        color: #750000;
        text-decoration: underline;
    }

    .show {
        display: block;
    }

    /* children of logo */
    .logo h1 {
        margin: 0;
    }

    .logo:hover {
        color: black;
    }

    /* children of h-navbar */
    .h-navbar ul {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
    }

    .h-navbar ul li {
        margin-right: 15px;
    }

    .h-navbar ul li a:hover {
        color: #750000;
        text-decoration: underline;
    }

    /*About block */
    .about-us {
        margin: 0;
        padding: 10px;
        background-color: #fffafa;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    figure figcaption{
        font-style: italic;
        font-size: 12px;
    }

    /* Children of about block */
    .about-txtbox {
        color: black;
        margin: 0;
        padding-right: 10px;
        text-align: justify;
        display: inline-block;
        flex-direction: column;
        vertical-align: baseline;
    }

    .about-txtbox h1 {
        color: #750000;
        margin: 0;
    }

    .about-txtbox p {
        margin: 8px;
    }

    .tammy-picture {
        margin-right: 0;
        padding-right: 0;
    }

    .tammy-picture img {
        display: inline-block;
        width: 200px;
        padding: 0;
        margin: 0;
    }

    /* Service title block*/
    .service-title {
        margin: 0;
        padding: 0 10px;
    }

    .service-title h1 {
        color: #750000;
        margin: 0;
        padding: 0;
    }

    /* Services block */
    .services {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 10px;
        background-color: #fffafa;
        font-family: Georgia;
        color: black;
        width: 100%;
    }

    .services-left {
        display: inline-block;
        vertical-align: baseline;
    }

    .services-left img {
        width: 300px;
    }

    .services-right {
        margin: 0;
        padding-left: 10px;
        vertical-align: baseline;
    }

    .services-right h3{
        margin: 0;
    }

    .services-right p {
        margin: 8px 0 8px 8px;
    }

    
    /* Testimonial Blocks */
    .testimonial-title {
        margin: 0;
        padding: 0 10px;
        /*border: 5px solid black;*/
    }

    .testimonial-title h1 {
        color: #750000;
        margin: 0;
        padding: 0;
    }

    /*
    .testimonials {
        border: 5px solid black; 
    }
    */
    
    /*Slideshow containers*/
    .slideshow-container {
        max-width: 1000px;
        position: relative;
        margin: auto;
        height: 250px;
        z-index: -1;
    }
    
    /*Hide images by default*/
    .mySlides {
        display: none;
    }
    
    .mySlides h3 {
        text-align: center;
    }
    
    .mySlides h4 {
        text-align: center;
    }
    
    /*Next and previous buttons*/
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: black;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
    }
    
    /*Position the "next" button to the right*/
    .next {
        right: 0;
        border-radius: 0 3px 3px 0;
    }
    
    /* On hover, add a black background color with a little bit see-through*/
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }
    
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
        background-color: #717171;
    }
    
    /* Fading animation*/
    .fade {
        animation: fade 25s infinite;
    }
    
    
    @keyframes fade {
        0% {
        opacity: 0;
        }
        10% {
            opacity: 1;
        }
        33% {
            opacity: 1;
        }
        43% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
    
    
    /* For slide images*/
    .fb-pfp {
        border-radius: 100%;
        border: solid black 1px;
        display: block;
        margin: auto;
        margin-bottom: 30px;
        width: 80px;
    }
    
    
    /* Contact Us Blocks*/
    .contact-title {
        margin: 0;
        padding: 10px 10px;
        width: 100%;
    }

    .contact-title h1 {
        color: #750000;
        margin: 0;
        padding: 0;
    }

    .contact-us {
        display: flex;
        align-items: center;
        padding-left: 10px;
        width: 100%;
        flex-direction: row;
        border-bottom: dotted gray 2px;
    }
    
    .contact-left {
        display: inline-block;
        padding-right: 10px;
    }
    
    .contact-right {
        display: inline-block;
        padding-left: 50px;
    }
    .contact-left h3 {
        margin: 0;
    }

    .contact-left ul {
        margin: 8px 0;
        list-style: none;
        padding-left: 0;
    }

    .contact-left li {
        margin: 8px 0 0 0;
        padding-left: 10px;
    }
    
    li.bottom-address {
        margin: 0 0 0 60px;
    }
    
    .contact-right {
        text-align: center;
    }
    .contact-right h2 {
        background-color: #750000;
        color: #fffafa;
        padding: 20px;
        border-radius: 14px;
        border: 2px black solid;
    }
    /* Links block in the Contact Us region*/
    .links {
        display: flex;
        width: 100%;
    }

    .leftlink {
        padding: 0 10px;
        margin: 0;
        text-align: center;
    }

    .googlemap {
        padding: 0;
        margin: 0;
    }
    .rightlink {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        margin: 0;
    }

    .right-link h3 {
        margin: 0;
    }
    .fb-page {
        width: 100%;
        height: 100%;
    }

    .fb-page blockquote {
        height: 100%;
    }
}
/* Style for very small devices (portrait phones) */
@media (max-width: 480px) {
    .header {
        padding: 0;
    }

    h1 {
        font-size: 1.1em;
    }

    .dropbtn {
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
    }

    .dropdown-content a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

