/*body {margin:0;
  background-image: url(images/afternooncloudslarge.gif);
   background-repeat: no-repeat;
     background-color:white;

}*/

a{color: #472200;}
/* styling the Navigation*/
   /*Remove margins and padding from the list, and add a black background color */
ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
/*background-color: #fff;*/
 background: rgba(255, 255, 255, 0.7);
  
  
}

/* Float the list items side by side */
ul.topnav li {float: left;}

/* Style the links inside the list items */
ul.topnav li a {
  display: inline-block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;/*was 17px*/
  font-family: arial, helvetica, sans-serif;
}

/* Change  color of links on hover (orginally was change background color) */
ul.topnav li a:hover {color: red;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}

/*section{  /* here we will add the styling of a section*/
 /* color: #472200;/*
  /*background-color: #fffff70;*//*
  background: rgba(255, 255, 255, 0.7);
  width:40%;
  float: left;
  margin: 2% 2%;
  text-align: left;
  padding: 10px 40px;
  box-shadow: 10px 10px 5px #888888;
  border-radius: 25px;
  font-size: 14px;/*was 17px*/
 /* font-family: "Trebuchet MS", arial, helvetica, sans-serif;

}*/


/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}


/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }

  /*body {margin:0;
  background-image: url(images/index680.jpg);
   background-repeat: no-repeat;
     background-color:white;
}/