/*  ---- responsive images ------ */
.responsive {
  width: 100%;
  height: auto;
}

/*  default font size for smallest screens  */
body{
    font-size: 12px;
}
/* don't set #content p width for smallest screens:
   let browser wrap text to full width
*/


/* Larger than mobile */
@media (min-width: 400px) {
    #content p {
        width: 350px; /* allow for padding */
    }
}

/* Larger than phablet */
@media (min-width: 550px) {
    #content p {
        width: 500px;
    }
}

/* Larger than tablet */
@media (min-width: 750px) {
    #content p {
        width: 700px;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    #content p {
        width: 750px;
    }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

html {  height: 100%;
}
body {  background: #777;
    margin: 0px;
    font-family: Verdana, Arial, sans-serif;
    height: 100%; 
}

#container {
    width: 100%;
    background: #ddd;
    min-height: 100%;   /* stretch b/ground to bottom */
}
#content {
    background: #ddd;
    min-height: 200px;
}
/*
#content ul {
    padding: 0 0 0 10px;
}
*/


/* ************* end dropdown ****************** */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ************* end dropdown ****************** */


#header {
    background: #ddd;
/*
    font-weight: 400;
    font-family: Verdana, Arial, sans-serif;
    background: #05f;
*/
}

#footer {
    background: red;
    text-align: right;
    font-family: Verdana, Arial, sans-serif;
}

p {     
    padding: 10px;
    margin: 0px 0px 0px 0px;
}
H1,H2,H3 { 
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 5px 10px;
    font-family: Verdana, Arial, sans-serif;
}
