html {
    font-size: 14px;
    overflow: auto;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: white;
    margin-bottom: 60px;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: xx-large;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: xx-large;
    border: double;
    border-radius: 20px;
    border-width: 3px;
    margin: 0% 20% 0% 20%;
    color: #B22A2E;
    font-weight: 600;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: xx-large;
    margin: 0% 20% 0% 20%;
    color: red;
    font-weight: 600;
}

p1, ul {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

p2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    background-color: blanchedalmond;
    color: #B22A2E;
    border: solid;
    padding: 5px;
}

p4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    color:red;
}

address {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: larger;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
}

message {
    border-style: solid;
    border-width: medium;
}

.banner-head {
    text-align: center;
    padding: 5px;
}

.banner-foot {
    text-align: center;
    padding: 5px;
    background-size: cover;
    background-repeat: no-repeat;
}

.navigation {
    margin: 5px;
    padding: 5px;
    border: solid;
    border-color: forestgreen;
    border-radius: 8px 10px;
}

/*the following four lines remove the underscores from the page links.*/
a:link {
    text-decoration: none;
    background-color: transparent;
    color: black;
}

a:visited {
    text-decoration: none;
    background-color: transparent;
    color: black;
}

a:hover {
    text-decoration: underline;
    background-color: transparent;
    color: black;
}

a:active {
    text-decoration: none;
    background-color: transparent;
    color: forestgreen;
}

telephone {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: larger;
    font-weight: bolder;
    text-align: right;
    float: right;
    margin: 0 10% 0 0;
}

.left-side-1 {
    width: 60%;
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

.right-side-1 {
    width: 40%;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    text-align: right;
}

.full-width {
    width: 100%;
}

.marquee-parent {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 40px;
}

.marquee-child {
    display: block;
    width: 3200px;
    /* width of your text div */
    height: 40px;
    /* height of your text div */
    position: absolute;
    animation: marquee 20s linear infinite; /* change 5s value to your desired speed */
}

    .marquee-child:hover {
        animation-play-state: paused;
        cursor: pointer;
    }

@keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -2200px /* same as your text width */
    }
}
