html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
    background-image: url("snow.png");
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #777;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/*Header code for index page*/

.main-wrapper {
    margin: 0 auto;
    width: 900px;
}

a {
    text-decoration: none;
}
body{
    background-color: #999;
}
header nav{
    width: all;
    height: 60px;
    background-color: #666;
}

header nav ul{
    float: left;
}

header nav ul li{
    float: left;
    list-style: none;
}

header nav ul a{
   font-family: antiqua;
   font-size: 20px;
   color: #111;
   line-height: 63px;
}

header .nav-login {
    float: right;
}

header .nav-login form {
    float: left;
    padding-top: 15px;
}

header .nav-login form input{
    float: left;
    width:  140px;
    height: 30px; 
    padding: 0px 10px;
    margin-right: 10px;
    border: none;
    background-color: #ccc;
    font-family: antiqua;
    font-size: 16px;
    color: #111;
    cursor: pointer;
}

header .nav-login form button{
    float: left;
    width:  65px;
    height: 30px; 
    margin-right: 10px;
    border: none;
    background-color: #f3f3f3;
    font-family: antiqua;
    font-size: 14px;
    color: #111;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    background-color: white; 
    color: black; 
    border: 2px solid #4CAF50;
}

header .nav-login form button:hover {
    background-color: #4CAF50; /* Green */
    color: white;
}

header .nav-login a{
    width: 80px;
    height: 60px;
    border: none;
    float: left;
    background-color: #666;
    font-family: antiqua;
    font-size: 16px;
    font-weight: bold;
    color:#222;
    line-height: 63px;
    cursor: pointer;
}

.main-container {
    padding-top:40px;
}

.main-container h2 {
    font-family: antiqua;
    font-size: 20px;
    color:#111;
    line-height: 100px;
    text-align: center;
}


.signup-form{
    width:400px;
    margin: 0 auto;
    padding-top: 30px;
}

.signup-form input {
    width: 90%;
    height: 40px;
    padding: 0px 5%;
    margin-bottom: 4px
    border: none;
    background-color:#fff;
    font-family: antiqua;
    font-size: 16px;
    color: #111;
    line-height: 40px;
}

.signup-form button {
    display: block;
    width: 30%;
    height: 40px;
    font-family: antiqua;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    border-width: 3px;
    color: #111;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 20px;
    background-color: white; 
    color: black; 
    border: 2px solid #4CAF50;
}

.signup-form button:hover {
 
    color: white; 
    background-color: #4CAF50; /*Green*/
}

/*comment @media screen and (max-width:320px) {
  /* CSS for screens that are 320 pixels or less will be put in this section */
/*comment} 
@media screen and (min-width:320px) and (max-width:640px) {
  /* for screens that are at least 320 pixels wide but less than or equal to 640 pixels wide */
} 
/* code that is here, until the first @media block, will apply to any screen size */
/*comment#somethingorother {
  width: 800px ;
}

@media screen and (max-width: 320px) {
  /* comes into effect for screens less than or equal to 320 pixels */
/*comment  #somethingorother {
    width: 120px ;
  }
}
@media screen and (min-width: 321px) and (max-width: 480px) {
  /* comes into effect for screens between 321 and 480 pixels (inclusive) */
/*comment  #somethingorother {
    width: 320px ;
  }
}
@media screen and (min-width: 481px) {
  /* comes into effect for screens larger than or equal to 481 pixels */
/*comment  #somethingorother {
    width: 480px ;
  }
}

/* code that is here will apply to any screen size */ 
/*comment@media screen and (orientation:portrait) {
  /* ... */
}
/*comment@media screen and (orientation: landscape) {
  /* ... */
/*comment} */