/* the styles for the HTML elements */
*{
    margin: 0;
    padding: 0;
}

html, body{
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

header{
    position:fixed;
    top:0px;
    left: 0px;
    width:100%;
    background-color: #333332;
}

#home header ul li:not(:first-child){
    display: none;   
}

#home footer{ 
    position: fixed;
}


header ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding: 30px 0px;
}

header li{
    display: inline;
    padding: 20px;
    position: relative;
    left: 42%;
}

nav a{
    width: 60px;
    color: #B7B7B7;
    text-decoration: none;
    font-weight: bold;
    font-family: Tahoma, Geneva, sans-serif;}

a{
    text-decoration: none;
    font-family: Tahoma, Geneva, sans-serif;}

a:hover {
    color: #00ADEF;
}

a:active{
    color: #00ADEF;
}

.logo{
    position: relative;
    left: 9%;  
}
#logo{
    width: 300px;
    top: 12px;
}

#homePage{
    background: url(images/busy_woman.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}

.space{
    line-height: 42px;
}

/*----------------- Main -------------------*/
#homePage [type*="password"], [type*="email"]{
    width: 80%;
    height: 20px;
    padding: 6px;
}

#homePage [type*="submit"]{
    width: 30%;
    position: relative;
    left: 214px;
    background-color: #00ADEF;
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
}

.main{
    padding: 8% 11% 8%;
    font-family: Tahoma, Geneva, sans-serif;}

.main ul{
    list-style-type: none;
    line-height: 24px;
}

.main li{
    text-decoration: none;
}

section {
    width: 500px;
}

.button{
    background-color: #00ADEF;  
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
}

.edit_button{
    background-color: #00ADEF;
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
}

.view_list{
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    color: #333332;
    opacity: 1;
    text-decoration: none;
}

video{
    margin-top: -25px;
}

/*------------------ Headers -----------------*/
h1{
    font-family: Tahoma, Geneva, sans-serif;
    padding: 45px 0px;
}

#homeTitle{
    padding: 15px 0px;
}

.error{
    color: red;
}


/*------------------- Form --------------------*/
.edit_button input[type=submit]{
    /*    background-image: url(images/delete.png);*/
    width: 50px;
    height: 50px;
}

label, input {
    /* in order to define widths */
    display: inline-block;
}

#item_form input[type=submit]{
    background-color: #00ADEF;
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
}

#item_form {
    margin: .5em 0;
}
#item_form label {
    width: 6em;
    padding-right: 1em;
    padding-bottom: .5em;
}

#item_form input[text] {
    width: 15em;
}

form{
    background: -webkit-gradient(linear, bottom, left 175px, from(#CCCCCC), to(#EEEEEE));
    background: -moz-linear-gradient(bottom, #CCCCCC, #EEEEEE 175px);
    margin:auto;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    color: #00ADEF;
    opacity: 1;
    text-decoration: none;
}

#login_form{
    position: fixed;
    top: 165px;
    left: 57%;
    z-index: 2;
    background-color: white;
    padding: 20px 20px;
    width: 400px;
    height: 300px;
    border: #333332 solid thick;
}

.paragraph{
    width: 50%;
    height: 50px;
}

/*------------------ Table ------------------*/

table {
    border-collapse: collapse;
    margin-bottom: 1em;
    margin-top: 1em;
}
td {
    background-color: lightgrey;
    padding: .4em .5em;
    text-align: left;
}

th{
    background-color: white;
    padding: .4em .5em;
    text-align: left;
}

td:nth-child(even) {
    background-color: grey;
}
tr:nth-child(even) {
    background-color: lightblue;
}

/*-------------- classes & IDs -----------------*/

.first_paragraph {
    margin-top: 0;	
}
.last_paragraph {
    margin-bottom: 2em;	
}
/* the styles for the div tags that divide the page into sections */
#left_column {
    float: left;
    width: 150px;
    text-align: center;
}
#right_column {
    float: left;
    padding-left: 1em;
    padding-bottom: 2em;
}

/*------------------ Footer -----------------*/
footer{
    position:relative;
    bottom:0px;
    left: 0px;
    height:65px;
    width:100%;
    background-color: #333332;
}

footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding: 30px 0px;
    position: relative;
    left: 9%;
}

footer li{
    display: inline;
    padding: 20px;
}

footer a{
    font-size: .8em;
}

footer p {
    text-align: right;
    font-size: 80%;
}





