@charset "utf-8";

/*Author: Orrin Gray
Date: 05/25/2018*/

/*Sets Background of entire code */
html {
     background-image: url(white_tanks.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/*Sets Header color to gray*/
header{
    background-color: gray;
    border-left: 1px solid rgb(51,51,51);
    border-right: 1px solid rgb(51,51,51);
    box-shadow: rgb(51,51,51) 0px 0px 25px 5px;
                
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}


/*Navigation settings. Change default font size of text and background collor*/
nav {
    font-size: 0.9em;
    background-color: gray;
}

/*Removes the dots from navigation list. Padding sets the space between list items
Padding for the entire list*/
nav> ul{
    list-style-type: none;
    margin: 0;
    padding: 0; 
    overflow: hidden;  
}

/*Sets how the visited nav links look like*/
nav > ul > li > a:link, nav > ul > li > a:visited{
    color:Black;
    text-decoration: none;
}

/*Sets how the navigation items look that are active and hovered over*/
nav > ul > li > a:hover, nav > ul > li > a:active{
    color:Red;
    text-decoration: underline;
}

/*Sets the body background color*/
body {
    color: whitesmoke;
   
    font-family: Verdana, Geneva,'Bree Serif', serif;
    line-height: 2em;
    padding: 0 175px 0 110px;
}


/*Set Column location*/
.column1{
    float: left;  
    
}

.column2{
    float: right;
}

.column1 {
    width:100%;
}

.column2{
    width:25%;
}


/*Lines the navigation list horizontal along the top
padding sets space between list items*/
li a{
    float: left;
    background-color: gray;
    padding: 8px;  
}



.photo {
    display: block;
    border: 4px double red;
    box-shadow: gray 5px 5px 25px;
    
    
}

/*Format About Us Table*/

table.about_us{
    background-color: white;
    border: 10px double red;
    font-size: 0.9em;
    width: 100%;
}

/*Table Cells */
table.about_us th, table.about_us td {
    border:1px solid black;
    border-collapse: collapse;
    color: black;
}


/*Format Gallery Table*/

table.gallery{
    font-size: 0.9em;
    width: 100%;
}

/*Table Cells */
table.gallery th, table.gallery td {
    border:1px solid black;
    border-collapse: collapse;
    color: black;
}


table.gallery img {
    border-radius: 4px;
    padding: 5px; 
    width: 150px; 
}

/* Add a hover effect */
table.gallery img:hover {
    box-shadow: 0 0 10px 10px rgba(0, 140, 186, 0.5);
}




/*Format Services Table*/

table.services{
    background-color: white;
    border: 10px double red;
    font-size: 0.9em;
    width: 100%;
}

/*Table Cells */
table.services th, table.services td {
    border:1px solid black;
    border-collapse: collapse;
    color: black;
    text-align: center;
}


col.servicecolumns {
    width: 50%;
   
}



article {
    background-color: black;
    border: 4px double red;
    border-left: 1px solid rgb(51,51,51);
    border-right: 1px solid rgb(51,51,51);
    box-shadow: rgb(51,51,51) 0px 0px 25px 5px;
                
    
}

/*Settings for headers in the page. Test color, font style, size and spacing*/
h1,h2 {
    color: red;
    font-family:cursive;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-shadow: gray 5px 5px 25px;
}

/*Setting for the footer style*/
footer{
    font-style: italic;
    text-align: center;
    background-color: gray;
}

/*Format Audio Player*/
audio{
     display: block;
    border: 4px double red;
    box-shadow: gray 5px 5px 25px;
}



/*Form Settings*/
#contact { 
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-flow: row wrap; 
    flex-flow: row wrap;
}
#contact > fieldset {  
    border-radius: 20px; -webkit-flex: 1 1 300px; 
    flex: 1 1 300px;
    font-size: 0.85em; 
    padding: 10px;
    margin: 10px; 
}

div.formRow {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 7px 0px;
}

div.formRow > * {
    -webkit-flex: 1 1 150px;
    flex: 1 1 150px;
}

/*Text Area Style*/
textarea {
    margin-top: 10px;
    height: 100px;
    width:95%;
}

input[type='submit'], input[type='reset'] { 
    font-size: 1.2em; 
    padding: 5px; 
    margin: 15px;
}