/* Universal Style*/
* {
    box-sizing: border-box;
}

/* Body Style */
body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
    background-color: rgb(18, 18, 18);
    min-width: 900px;
    max-width: 1280px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* header class style */
.header {
    text-align: center;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    /* font-size: 25px; */
    background-color: rgb(5, 5, 6);
    height: 90px;
    padding-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
}
  
.header span:nth-child(1) {
    font-size: 55px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    float: left;
}
  
.header span:nth-child(2) {
    float: center;
    font-size: 15px;
}
  
h1 {
    text-align: left;
    font-size: 20px;
}

/* Left navigation column */
nav {
    color: white;
    font-size: 16px;
    width: 12%;
    height: 185px;
    top: 233px;
    padding-right: 30px;
    padding-top: 10px;
    background-color: black;
    text-align: center;
    position: fixed;
    line-height: 19px;
}

nav a {
    /* color: white; */
    text-decoration: none;
}

nav a:link {
    color: white;
}

a:visited {
    color: #fe910c;
}

a:focus {

}

a:hover {
    color: #6e593e;
}

a:active {
    
}

nav ul {
    padding-left: 0;
    list-style-type: none;
}

/* nav ul ul {
    position: absolute;
    background-color: rgb(1, 5, 15);
    padding: 0;
    text-align: left;
    display: none;
    line-height: 19px;
} */

/* nav li:hover ul {
    display: block;
} */

li {
    margin-left: 25px;
}

main {
    color: white;
    float: right;
    width: 78%;
    font-size: 25px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: black;
    /* display: block; */
}

main h3 {
    font-size: 24px;
}

p {
    font-size: 17px;
}

/* Style scrolling text */
#scroll-container-index {
    max-width: 100%;
    font-size: 18px;
    border: 3px solid black;
    border-radius: 5px;
    overflow: hidden;
}

#scroll-text-index {   
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);

    -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 20s linear infinite;

    white-space: nowrap;
}

/* Style scrolling text */
#scroll-container {
    max-width: 100%;
    border: 3px solid black;
    border-radius: 5px;
    overflow: auto;
}

#scroll-text {   
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(0%);

    /* -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 0s linear infinite; */

    white-space: nowrap;
}

#scroll-text img {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
}

/* For Firefox */
@-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }

    0% {margin-left: 100%;}
    100% {margin-left: -38em;}
}

.cntrbadges {
    padding-left: 20%;
}

figure {
    position: absolute;
    left: 280px;
    text-align: center;
    opacity: .25;
}

figcaption {
    display: none;
    position: fixed;
    top: 160px;
    left: 925px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration-style: italic;
}

/* style home page center badges */
.cntrbadges {
    width: 500px;
    height: auto;
    float: left;
  }

/* Style home page table */
table {   
    width: 90%;
    font-size: 19px;
    margin: auto;
    border-spacing: 0;
    border: none;       
}

td, th {
    border: none;
    padding: 10px;    
}

tr:nth-of-type(odd) {
    background-color: rgb(32, 32, 32);
}

/* Style contact page form */
/* form {
    padding: 2em;
} */

/* label {
    float: left;
    display: block;
    text-align: right;
    width: 8em;
    padding-right: 1em;
}

input, textarea {
    display: block;
    margin-bottom: 1em;
}

#Submit {
    margin-left: 9.5em;
} */

/* Style main div top id images */
#streetSketch {
    background-image: url(images/sketch/streetSketch.JPG);;
    background-repeat: no-repeat;
    background-size: 15%;
    height: 100px;
}

#beachprtrait {
    vertical-align: 50px;  
}

#beachflag {
    background-image: url(images/photography/beachflag.JPG);
    background-repeat: no-repeat;
    background-size: 15%;
    height: 90px;
}

#jog {
    vertical-align: 60px;
}

#grvdog {
    vertical-align: 30px;
}

#oburg {
    vertical-align: 40px;
}


#space {
    height: 20px;
    clear: both;
}

/* Footer style */
footer {
    text-align: center;
    color:white;
    font-size: 12px;
    background-color: rgb(5, 5, 6);
    height: 75px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer span:nth-child(1) {
    float: left;
}
  
footer span:nth-child(3) {
    float: right;  
}

/* Style phone number */
#mobile {
    display: none;
}

#desktop {
    display: inline;
}

/*******************************************************/
/*******************************************************/
/*              MOBILE DEVICES           */
/* media query for diffrent screen sizes */
@media only screen and (max-width: 1024px) {
    body {
        width: 100%;
        margin: 0;
    }

    #wrapper {
        width: 100%;

        
    }

    header {
        /* border-bottom: 5px solid rgb(191, 194, 204); */
    }

    h1 {
        margin-top: 0;
    }

    .header {
        float: left;
        width: 100%;
        height: 175px;
        clear: both;  
    }

    .header span:nth-child(1){
        float: center;
        clear: both;
        padding-left: 43%;
        padding-top: 5%;
        font-size: 55px;
    }

    .header span:nth-child(2){
        float: left;
        clear: both;
        /* padding-top: 5%; */
        padding-left: 7%;
        font-size: 20px;
    }

    #streetSketch {
        background-image: url(images/sketch/streetSketch.JPG);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: 55%;
        background-position-y: 255px;
        height: 450px;
    }

    /* Left navigation column */
    nav {
        float: left;
        /* display: none; */
        font-size: 30px;
        width: 25%;
    
        top: -250px;
        
        padding-left: 7%;
        line-height: 30px;
        margin: 10px;
        text-align: left;
        position: relative;
        background: none;
    }

    main {
        color: white;
        float: left;
        clear: both;
        width: 100%;
        font-size: 25px;
        background-color: black;
        display: block; 
    }

    footer {
        font-size: 17px;
    }
}

@media only screen and (max-width: 600px) {
    header {
        background-image: none;
        height: 128px;
    }

    h1 {
        font-size: 2em;
        text-align: center; 
        padding-left: 0;
    }

    nav {
        margin: 0;
        height: auto;
    }

    nav a {
        display: block;
        padding: 0.2em;
        width: auto;
        border-bottom: 1px;
        border-color: white;
    }

    nav li {
        display: block;
    }

    #gallery a:hover-focus-active {
        position: absolute;
        top: 16px;
        left: 320px;
        text-align: center;
        opacity: 1;
    }

    main {
        padding: 1px;
        width: auto;
    }

    h2 {
        padding-top: 0.5em;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0.5em;
        margin-right: 0.5em;
    }

    img {
        width: auto;
    }

    figure {
        width: auto;
    }

    #mobile {
        display: inline;
    }

    #desktop {
        display: none;
    }



    .header {
        float: left;
        width: 100%;
        height: 210px;
        clear: both;  
    }

    .header span:nth-child(1){
        float: center;
        clear: both;
        padding-left: 35%;
        padding-top: 3%;
        font-size: 115px;
    }

    .header span:nth-child(2){
        float: left;
        clear: both;
        padding-top: 13%;
        padding-left: 15%;
        font-size: 25px;
    }

    #streetSketch {
        background-image: url(images/sketch/streetSketch.JPG);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: 55%;
        background-position-y: 255px;
        height: 450px;
    }


    /* Left navigation column */
nav {
    float: right;
    clear: both;
    font-size: 27px;
    font-weight: 600;
    width: 25%;
    top: -465px;
    padding-right: 31%;
    text-align: center;
    position: relative;
    line-height: 20px;
    background: none;
}

main {
    color: white;
    float: left;
    width: 100%;
    font-size: 40px;
    background-color: black;
    display: block;
    clear: both;
}

main h2 {
    padding-left: 38%;
}

main h3 {
    padding-left: 40%;
    font-size: 35px;
    padding-top: 10%;
}

p {
    text-align: center;
    font-size: 30px;
    padding-bottom: 10%;
    
}


/* Style scrolling text */
#scroll-container {
    max-width: 100%;
    border: 3px solid black;
    border-radius: 5px;
    overflow: auto;
}

#scroll-text {   
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(0%);

    /* -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 0s linear infinite; */
}

#scroll-text-index {
    font-size: 30px;
}

#scroll-text img {
    max-width: 40%;
    padding-left: 55px;
    /* padding-right: 15px; */
}

/* For Firefox */
@-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }

    0% {margin-left: 100%;}
    100% {margin-left: -38em;}
}

/* Style home page table */
table {   
    width: 90%;
    font-size: 35px;
    margin: auto;
    border-spacing: 0;
    border: none; 
    padding-bottom: 0;      
}

/* Footer style */
footer {
    text-align: center;
    line-height: 10px;
    color:white;
    font-size: 23px;
    background-color: rgb(1, 5, 15);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25%;
    padding-right: 5px;
}

footer a {
    text-decoration: none;   
}

footer span:nth-child(1) {
    float: left;
    clear: both;
    padding-left: 7%;
    padding-top: 10%;
}

footer span:nth-child(2) {
    float: left;
    clear: both;
    padding-top: 7%;
    padding-bottom: 7%;
    padding-left: 30%;
}
  
footer span:nth-child(3) {
    float: left;
    clear: both;  
    padding-bottom: 10%;
    padding-left: 3%;
}


}



@media only screen and (max-width: 390px) {

    .header {
        float: left;
        width: 100%;
        height: 210px;
        clear: both;  
    }

    .header span:nth-child(1){
        float: center;
        clear: both;
        padding-left: 35%;
        padding-top: 3%;
        font-size: 115px;
    }

    .header span:nth-child(2){
        float: left;
        clear: both;
        padding-top: 13%;
        padding-left: 15%;
        font-size: 25px;
    }

    #streetSketch {
        background-image: url(images/sketch/streetSketch.JPG);
        background-repeat: no-repeat;
        background-size: 75%;
        background-position: 55%;
        background-position-y: 200px;
        height: 620px;
    }
    


    /* Left navigation column */
nav {
    float: right;
    clear: both;
    text-shadow: 5px 5px 3px black;
    font-size: 27px;
    font-weight: 600;
    width: 25%;
    top: -465px;
    padding-right: 31%;
    text-align: center;
    position: relative;
    line-height: 20px;
    background: none;
}

main {
    color: white;
    float: left;
    width: 100%;
    font-size: 40px;
    background-color: black;
    display: block;
    clear: both;
}

main h2 {
    padding-left: 38%;
}

main h3 {
    padding-left: 40%;
    font-size: 35px;
    padding-top: 10%;
}

p {
    text-align: center;
    font-size: 30px;
    padding-bottom: 10%;
    
}


/* Style scrolling text */
#scroll-container {
    max-width: 100%;
    border: 3px solid black;
    border-radius: 5px;
    overflow: auto;
}

#scroll-text {   
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(0%);

    /* -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 0s linear infinite; */
}

#scroll-text-index {
    font-size: 30px;
}

#scroll-text img {
    max-width: 100%;
    padding-left: 55px;
    /* padding-right: 15px; */
}

#ballbin {
    height: 570px;
}

#cuba {
    height: 550px
}

#cementary {
    height: 535px;
}

#street {
    height: 525px;
}

#beachprtrait {
    vertical-align: 100px;  
}

#rasta {
    height: 550px;
}

#grnskll {
    height: 550px;
}

#venicest {
    height: 540px;
}

#tree {
    height: 540px;
}

#garden {
    height: 550px;
}

#link {
    height: 550px;
}

#red {
    height: 550px;
}

#pcw {
    height: 600px;
}

#zebra {
    width: 35%;
}

#jog {
    height: 250px;
    vertical-align: 150px;
}

#earth {
    height: 600px;
}

#cubaGrph {
    height: 600px;
}

#herb {
    height: 550px;
}

#grvdog {
    height: 375px;
    vertical-align: 100px;
}

#oburg {
    height: 350px;
    vertical-align: 100px;
}

#accordian {
    height: 550px;
}

/* For Firefox */
@-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }

    0% {margin-left: 100%;}
    100% {margin-left: -38em;}
}

/* Style home page table */
table {   
    width: 90%;
    font-size: 35px;
    margin: auto;
    border-spacing: 0;
    border: none; 
    padding-bottom: 0;      
}

/* Footer style */
footer {
    text-align: center;
    line-height: 10px;
    color:white;
    font-size: 23px;
    background-color: rgb(1, 5, 15);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25%;
    padding-right: 5px;
}

footer a {
    text-decoration: none;   
}

footer span:nth-child(1) {
    float: left;
    clear: both;
    padding-left: 7%;
    padding-top: 10%;
}

footer span:nth-child(2) {
    float: left;
    clear: both;
    padding-top: 7%;
    padding-bottom: 7%;
    padding-left: 30%;
}
  
footer span:nth-child(3) {
    float: left;
    clear: both;  
    padding-bottom: 10%;
    padding-left: 3%;
}


}

